UNPKG

gauge-ts

Version:
14 lines (13 loc) 344 B
export declare class TableRow { private readonly _cells; constructor(); addCell(header: string, value: string): void; getCell(columnName: string): string; getCellValues(): Array<string>; get size(): number; /** * @deprecated Use getCellValues() instead. * @public */ get cells(): Array<string>; }