UNPKG

nested_json_to_csv

Version:
11 lines (9 loc) 174 B
export interface IParser { parse(...args: any): any; get(): any; } export type ParserOptions = { single?: boolean; hasId?: boolean; setDefaultValues?: boolean; };