@mertdeveci55/univer-import-export
Version:
Excel/CSV import and export library for Univer spreadsheets with full format preservation
17 lines (16 loc) • 531 B
TypeScript
import type { IResources, IStyleData, IWorkbookData, IWorksheetData, Nullable } from '@univerjs/core';
export declare class UniverCsvWorkBook implements IWorkbookData {
id: string;
rev?: number | undefined;
name: string;
appVersion: string;
locale: any;
styles: Record<string, Nullable<IStyleData>>;
sheetOrder: string[];
sheets: {
[sheetId: string]: Partial<IWorksheetData>;
};
resources?: IResources | undefined;
constructor(data: string[][]);
get mode(): IWorkbookData;
}