UNPKG

json-to-table-format

Version:
9 lines (8 loc) 663 B
export type TableStyle = 'simple' | 'ascii'; export declare function addSpaces(string: string, spaceCount: number): string; export declare function removeDoubleQuotes(value: string): string; export declare function getRow(headers: string[], startPoints: number[], isHeaderRow: boolean, obj?: any): string[]; export declare function getRows(data: any[], headers: string[], startPoints: number[], style?: TableStyle): string[]; export declare function getStartPoint(header: string, data: any[], startPoint: number): number; export declare function getStartPoints(data: any[], headers: string[]): number[]; export declare function getData(params: any): any;