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 { FullJson2CsvOptions } from './types'; export declare const Json2Csv: (options: FullJson2CsvOptions) => { convert: (data: object[]) => string; };