mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
451 B
TypeScript
18 lines
451 B
TypeScript
// Type definitions for csv2json 1.4
|
|
// Project: https://github.com/julien-f/csv2json
|
|
// Definitions by: Piotr Roszatycki <https://github.com/dex4er>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import Pumpify = require("pumpify");
|
|
|
|
declare namespace csv2json {
|
|
interface Options {
|
|
dynamicTyping?: boolean;
|
|
separator?: string;
|
|
}
|
|
}
|
|
|
|
declare function csv2json(options?: csv2json.Options): Pumpify;
|
|
|
|
export = csv2json;
|