1.4.5 • Published 6 months ago

@types/csv2json v1.4.5

Weekly downloads
1,104
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/csv2json

Summary

This package contains type definitions for csv2json (https://github.com/julien-f/csv2json).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/csv2json.

index.d.ts

// 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 | undefined;
    separator?: string | undefined;
  }
}

declare function csv2json(options?: csv2json.Options): Pumpify;

export = csv2json;

Additional Details

  • Last updated: Thu, 08 Jul 2021 09:08:25 GMT
  • Dependencies: @types/pumpify
  • Global values: none

Credits

These definitions were written by Piotr Roszatycki.