Files
vxe-table-plugin-export-xlsx/index.d.ts
xuliangzhan 3f4bb6a523 优化导出
2019-11-13 19:20:55 +08:00

15 lines
406 B
TypeScript

declare module 'xlsx' {
interface utils {
book_new(): any;
json_to_sheet(list: any[], options: any): any;
sheet_to_csv(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
}