UNPKG

458 BTypeScriptView Raw
1interface ParamsId {
2 storyId: string;
3}
4interface ParamsCombo {
5 kind: string;
6 story: string;
7}
8export declare const navigate: (params: ParamsId | ParamsCombo) => void;
9export declare const linkTo: (idOrKindInput: string, storyInput?: string | ((...args: any[]) => string)) => (...args: any[]) => void;
10export declare const hrefTo: (kind: string, name: string) => Promise<string>;
11export declare const withLinks: (...args: any) => any;
12export {};