UNPKG

simplified-json-to-excel

Version:

A simplified json to excel library for JavaScript and TypeScript

6 lines (5 loc) 176 B
export declare type FileDataType = any[] | { sheetName: string; data: any[]; }[]; export declare const JSONToExcel: (fileData: FileDataType, fileName: string) => void;