UNPKG

json-2-csv

Version:

A JSON to CSV and CSV to JSON converter that natively supports sub-documents and auto-generates the CSV heading.

5 lines (4 loc) 163 B
import type { FullCsv2JsonOptions } from './types'; export declare const Csv2Json: (options: FullCsv2JsonOptions) => { convert: (data: string) => object[]; };