UNPKG

simple-datatables

Version:

A lightweight, dependency-free JavaScript HTML table plugin.

13 lines (12 loc) 329 B
interface jsonConvertUserOptions { lineDelimiter?: string; columnDelimiter?: string; removeDoubleQuotes?: boolean; data: string; headings?: string[]; } /** * Convert JSON data to fit the format used in the table. */ export declare const convertJSON: (userOptions: jsonConvertUserOptions) => any; export {};