UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

15 lines (14 loc) 768 B
import { IExistingRowRouteData } from '@docsvision/webclient/Platform/IExistingRowRouteData'; import { IRouteInfo } from "@docsvision/webclient/System/IRouteInfo"; import { IRouteTypeMapper } from "@docsvision/webclient/System/IRouteTypeMapper"; export declare const CardID = "CardID"; export declare const RowEditRouteSectionID = "SectionID"; export declare const RowEditRouteRowID = "RowID"; export declare const RowEditRouteName = "RowEdit"; export declare class RowEditRouteTypeMapper implements IRouteTypeMapper<IExistingRowRouteData> { hashPattern: string; resolve(path: string, parameters: { [id: string]: string; }): Promise<IRouteInfo<IExistingRowRouteData>>; tryGetUrl(route: IRouteInfo<IExistingRowRouteData>): string | undefined; }