UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

18 lines (17 loc) 546 B
import { NavBarMode } from "@docsvision/webclient/Legacy/NavBarMode"; /** @deprecated */ export interface INavBar { SetMode(navBarMode: NavBarMode): void; GetMode(): NavBarMode; LockMode(lockComment: string): void; ReleaseModeLock(): void; AddMobileTabs(tabsElement: HTMLElement): void; HideBackButton(): void; ShowBackButton(): void; OnDashboardLoad(): void; OnGoToRoute(): void; } export declare type $NavBar = { navBar: INavBar; }; export declare const $NavBar: string | ((model?: $NavBar) => INavBar);