Skip to content

Commit 2048bde

Browse files
authored
restore spacing due to VSCode auto formatting
1 parent f3f27cb commit 2048bde

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/converter.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface ISharedOptions {
2222
* Should boolean values be wrapped in wrap delimiters to prevent Excel from
2323
* converting them to Excel's TRUE/FALSE Boolean values.
2424
* @default false
25-
*/
25+
*/
2626
wrapBooleans?: boolean;
2727

2828
/**
@@ -105,11 +105,11 @@ export interface IFullOptions extends ISharedOptions {
105105
}
106106

107107
export function json2csv(data: object[],
108-
callback: (err?: Error, csv?: string) => void, options?: IFullOptions): void;
108+
callback: (err?: Error, csv?: string) => void, options?: IFullOptions): void;
109109

110110
export function json2csvAsync(data: object[], options?: IFullOptions): Promise<string>;
111111

112112
export function csv2json(csv: string,
113-
callback: (err?: Error, data?: any[]) => void, options?: ISharedOptions): void;
113+
callback: (err?: Error, data?: any[]) => void, options?: ISharedOptions): void;
114114

115115
export function csv2jsonAsync(csv: string, options?: ISharedOptions): Promise<any[]>;

0 commit comments

Comments
 (0)