You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
329 B
7 lines
329 B
import { JSONObject } from '@expo/json-file';
|
|
import { CellValue } from 'cli-table3';
|
|
export declare function printTableJsonArray(headers: string[], jsonArray: {
|
|
[key: string]: CellValue;
|
|
}[], colWidths: number[]): string;
|
|
export declare function printTableJson(json: JSONObject, header1?: string, header2?: string): string;
|