mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
fix lint error
This commit is contained in:
5
types/node-xlsx/index.d.ts
vendored
5
types/node-xlsx/index.d.ts
vendored
@@ -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<[]>;
|
||||
}>;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user