UNPKG

tdc-js-modules

Version:

10 lines 459 B
/** * * @param colums: Array of type ColumnType that describes the shape of a column in a DataTable. * @param records: Arreglo de información; las llaves * @param fileName: Name of the file to be exported. */ import { ColumnType } from '../@types/ColumnT'; declare const exportToExcel: (columns: ColumnType<any>[], records: any[], fileName: string, ext?: string | undefined) => void; export { exportToExcel }; //# sourceMappingURL=exportToExcel.d.ts.map