nested_json_to_csv
Version:
13 lines (12 loc) • 324 B
TypeScript
export declare class Csv {
#private;
constructor(headers: string[], body?: string);
getRows(): string[][];
getHeaders(): string[];
setbody(body: string): this;
getBody(): string;
setHeaders(headers: string[]): Csv;
makeHeaders(rawCsv: string): Csv;
makeRows(): Csv;
make(): string;
}