fix lint error

This commit is contained in:
chenc
2019-01-08 01:59:30 +08:00
parent 517fcb3e2d
commit bfc5ff013b

View File

@@ -2,19 +2,20 @@
// Project: https://github.com/mgcrea/node-xlsx#readme
// Definitions by: chenc <https://github.com/cWatermelon>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.0
/**
* parsing a xlsx from file/buffer, outputs an object of worksheets
* @param mixed file or buffer
* @param options options is for xlsx
* @returns worksheets data, like: [{ name, data: [] }]
* @returns worksheets data, like: [{ name, data: [[]] }]
*/
export declare function parse(
mixed: any,
options?: {}
): Array<{
name: string;
data: {}[];
data: Array<[]>;
}>;
/**