@itznevikat/router
Version:
π¦ ΠΠ½ΠΎΠ³ΠΎΡΡΠ½ΠΊΡΠΈΠΎΠ½Π°Π»ΡΠ½ΡΠΉ ΡΠΎΡΡΠ΅Ρ Π΄Π»Ρ ΠΏΡΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠΉ Π½Π° React ΠΈ VKUI
10 lines (9 loc) β’ 339 B
TypeScript
export declare type NavType = 'view' | 'root' | 'epic';
export declare type Nav = {
type: NavType;
navID: string;
nodeID: string;
availableTransitionIDs: string[];
transitions: string[];
};
export declare function createNav(type: NavType, navID: string, availableTransitionIDs: string[], nodeID: string): Nav;