UNPKG

ajsfw

Version:
12 lines (11 loc) 395 B
import { IRedirection } from "./IRedirection"; export declare let IINavigator: INavigator; export interface INavigator { readonly lastUrl: string; readonly redirections: IRedirection[]; canNavigate: boolean; registerRedirection(path: string, target: string): void; navigate(url: string): void; navigated(): void; linkClicked(event: MouseEvent): boolean; }