4.1.4 • Published 6 months ago

@types/save-csv v4.1.4

Weekly downloads
85
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/save-csv

Summary

This package contains type definitions for save-csv (https://github.com/silverwind/save-csv).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/save-csv.

index.d.ts

// Type definitions for save-csv 4.1
// Project: https://github.com/silverwind/save-csv
// Definitions by: Frank Brullo <https://github.com/FrankBrullo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.1

interface SaveCsvProps {
    filename: string;
    sep?: string | undefined;
    eol?: string | undefined;
    quote?: string | undefined;
    bom?: boolean | undefined;
    mime?: string | undefined;
    formatter?: ((value: string | JSON) => void) | undefined;
}

declare function saveCsv(array: ReadonlyArray<any>, options?: SaveCsvProps): void;
export = saveCsv;

Additional Details

  • Last updated: Tue, 06 Jul 2021 16:34:16 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Frank Brullo.

4.1.4

6 months ago

4.1.3

7 months ago

4.1.2

7 months ago

4.1.1

3 years ago

4.1.0

5 years ago