UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

14 lines (13 loc) 518 B
import { ITableRowModel } from "@docsvision/webclient/Platform/ITableRowModel"; import { IRow } from "@docsvision/web/components/table/interfaces"; export declare class TableSelectionRowModel implements ITableRowModel { private row; instanceId: string; cardTypeId: string; constructor(row: IRow); get(columnName: string): string; getGuid(columnName: string): string; getBoolean(columnName: string): boolean; getNumber(columnName: string): number; getAvailableColumns(): string[]; }