UNPKG

@easyquery/core

Version:

EasyQuery.JS core modules

17 lines (16 loc) 571 B
export declare class EqDataTable { tableObj: any; constructor(data: any); loadFromJSON(json: string): void; toJSON(): string; getObject(): any; isEmpty(): boolean; getNumberOfColumns(): number; getColumnObject(colIndex: number): any; getColumnId(colIndex: number): string; getColumnLabel(colIndex: number): string; getColumnType(colIndex: number): string; getColumnProperties(colIndex: number): any; getNumberOfRows(): number; getFormattedValue(rowIndex: number, colIndex: number): string | null; }