@papb/json-excel
Version:
Create a pretty Excel table from JSON data with a very simple API
6 lines (5 loc) • 661 B
TypeScript
import type { JsonSheet, ExpandedJsonSheet, AutoFitCellSizesOptions, ExpandedAutoFitCellSizesOptions, JsonToExcelOptions, ExpandedJsonToExcelOptions, ExportJsonToExcelOptions, ExpandedExportJsonToExcelOptions } from './types';
export declare function expandAutoFitCellSizesOptions(options: AutoFitCellSizesOptions): ExpandedAutoFitCellSizesOptions;
export declare function expandJsonSheet(sheet: JsonSheet): ExpandedJsonSheet;
export declare function expandJsonToExcelOptions(options?: JsonToExcelOptions): ExpandedJsonToExcelOptions;
export declare function expandExportJsonToExcelOptions(options?: ExportJsonToExcelOptions): ExpandedExportJsonToExcelOptions;