Update xlsx typings

Add optional 'options' parameter to function sheet_to_csv. (53f7f6d944/bits/90_utils.js (L132))
This commit is contained in:
rinzeb 2017-02-07 13:21:31 +01:00 committed by GitHub
parent 276b1ae79f
commit a234ec5915

2
index.d.ts vendored
View File

@ -143,7 +143,7 @@ export interface IUtils {
range?: any;
header?: "A"|number|string[];
}):T[];
sheet_to_csv(worksheet: IWorkSheet):any;
sheet_to_csv(worksheet: IWorkSheet, options?: { FS: string, RS: string }): string;
sheet_to_formulae(worksheet: IWorkSheet):any;
encode_cell(cell: ICell): any;
encode_range(s: ICell, e: ICell): any;