UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

32 lines (31 loc) 1.43 kB
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models'; import { ITableRowModel } from '@docsvision/webclient/Platform/ITableRowModel'; export declare const INSTANCE_ID_SYSTEM_COLUMN = "_InstanceID"; export declare const ROW_ID_SYSTEM_COLUMN = "_RowID"; export declare const CARD_TYPE_ID_SYSTEM_COLUMN = "_CardTypeID"; export declare const SDID_SYSTEM_COLUMN = "_SDID"; export declare const SHORTCUT_ID_SYSTEM_COLUMN = "_ShortcutID"; export declare const TEMPLATE_CARD_SYSTEM_COLUMN = "_TemplateCard"; export declare const ARCHIVE_STATE_SYSTEM_COLUMN = "_ArchiveState"; export declare const DELETED_CARD_SYSTEM_COLUMN = "_DeletedCard"; export declare const WAS_READ_SYSTEM_COLUMN = "_WasRead"; export declare class GridRowModel implements ITableRowModel { private gridRow; constructor(gridRow: GenModels.GridRow); get(columnName: string, needRawValue?: boolean): any; getGuid(columnName: string): string; getBoolean(columnName: string): boolean; getNumber(columnName: string): number; getDateTime(columnName: string): Date | null; getString(columnName: string): string; getAvailableColumns(): string[]; get instanceId(): string; get rowId(): string; get cardTypeId(): string; get sdid(): string; get shortcutID(): string; get templateCard(): boolean; get archiveState(): number; get wasRead(): boolean; get deleted(): boolean; }