14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
interface Excel2JsonProps {
|
|
mappings?: Array<any>;
|
|
saveToOutput?: boolean;
|
|
outputPath?: string;
|
|
outputFile?: string;
|
|
outputName?: string;
|
|
sheetName?: string;
|
|
inputFile?: string;
|
|
mapperFile?: string;
|
|
encoding?: string;
|
|
}
|
|
|
|
declare function excel2json(props: Excel2JsonProps);
|