Files
ckb-SuperAdmin/Cunkebao/types/xlsx.d.ts
2025-04-08 16:01:59 +08:00

6 lines
179 B
TypeScript

declare module 'xlsx' {
export function read(data: any, opts?: any): any;
export namespace utils {
export function sheet_to_json(worksheet: any, opts?: any): any[];
}
}