UNPKG

xlsx-to-csv

Version:
12 lines (11 loc) 332 B
interface ConvertFileOptions { sheet?: string; delimiter?: ',' | ';' | string; dest?: string | 'return'; datetimeFormat?: string; } export declare function convertFile(filePath: string, options?: ConvertFileOptions): string; declare const _default: { convertFile: typeof convertFile; }; export default _default;