UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

12 lines (11 loc) 650 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 DepartmentRowViewRouteName = "DepartmentRowView"; export declare class DepartmentRowViewRouteTypeMapper implements IRouteTypeMapper<IExistingRowRouteData> { hashPattern: string; resolve(path: string, parameters: { [id: string]: string; }): Promise<IRouteInfo<IExistingRowRouteData>>; tryGetUrl(route: IRouteInfo<IExistingRowRouteData>): string | undefined; }