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 {
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
107107export 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
110110export function json2csvAsync ( data : object [ ] , options ?: IFullOptions ) : Promise < string > ;
111111
112112export 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
115115export function csv2jsonAsync ( csv : string , options ?: ISharedOptions ) : Promise < any [ ] > ;
You can’t perform that action at this time.
0 commit comments