2021-03-30 10:16:49 +07:00
|
|
|
interface Excel2JsonProps {
|
|
|
|
mappings?: Array<any>;
|
|
|
|
saveToOutput?: boolean;
|
|
|
|
outputPath?: string;
|
2021-03-30 11:21:58 +07:00
|
|
|
outputFile?: string;
|
2021-03-30 10:16:49 +07:00
|
|
|
outputName?: string;
|
|
|
|
sheetName?: string;
|
|
|
|
inputFile?: string;
|
|
|
|
mapperFile?: string;
|
|
|
|
encoding?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare function excel2json(props: Excel2JsonProps);
|