1
0
mirror of synced 2025-11-06 04:10:39 +08:00
Files
vxe-table-plugin-export-xlsx/index.d.ts
xuliangzhan 8bb910d550 update
2020-10-21 16:09:10 +08:00

18 lines
480 B
TypeScript

declare module 'xlsx' {
interface utils {
/* eslint-disable camelcase */
book_new(): any;
json_to_sheet(list: any[], options: any): any;
sheet_to_csv(Sheet: any): any;
sheet_to_json(Sheet: any): any[];
book_append_sheet(book: any, sheet: any, sheetName?: string): any;
}
interface XLSXMethods {
utils: utils;
read(result: any, options: any): any;
write(book: any, options: any): any;
}
const XLSX: XLSXMethods
export default XLSX
}