导入CSV文件

This commit is contained in:
柳清爽
2025-04-08 16:01:59 +08:00
parent dbc010a294
commit cccff5befb
106 changed files with 187604 additions and 319 deletions

6
Cunkebao/types/xlsx.d.ts vendored Normal file
View File

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