mirror of
https://gitee.com/x-extends/vxe-table-plugin-export-xlsx.git
synced 2026-01-21 05:21:33 +08:00
15 lines
406 B
TypeScript
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
|
|
} |