File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export interface ISharedOptions {
22
22
* Should boolean values be wrapped in wrap delimiters to prevent Excel from
23
23
* converting them to Excel's TRUE/FALSE Boolean values.
24
24
* @default false
25
- */
25
+ */
26
26
wrapBooleans ?: boolean ;
27
27
28
28
/**
@@ -105,11 +105,11 @@ export interface IFullOptions extends ISharedOptions {
105
105
}
106
106
107
107
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 ;
109
109
110
110
export function json2csvAsync ( data : object [ ] , options ?: IFullOptions ) : Promise < string > ;
111
111
112
112
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 ;
114
114
115
115
export function csv2jsonAsync ( csv : string , options ?: ISharedOptions ) : Promise < any [ ] > ;
You can’t perform that action at this time.
0 commit comments