// Type definitions for save-csv 4.1 // Project: https://github.com/silverwind/save-csv // Definitions by: Frank Brullo // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 3.1 interface SaveCsvProps { filename: string; sep?: string; eol?: string; quote?: string; bom?: boolean; mime?: string; formatter?: (value: string | JSON) => void; } declare function saveCsv(array: ReadonlyArray, options?: SaveCsvProps): void; export = saveCsv;