@itznevikat/router
Version:
π¦ ΠΠ½ΠΎΠ³ΠΎΡΡΠ½ΠΊΡΠΈΠΎΠ½Π°Π»ΡΠ½ΡΠΉ ΡΠΎΡΡΠ΅Ρ Π΄Π»Ρ ΠΏΡΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠΉ Π½Π° React ΠΈ VKUI
10 lines (9 loc) β’ 620 B
TypeScript
import { FC } from 'react';
import { ViewProps, RootProps, EpicProps, ModalRootProps } from '@vkontakte/vkui';
import { NavIdProps } from '@vkontakte/vkui/dist/lib/getNavId';
declare type NavIdRequiredProps = Required<Pick<NavIdProps, 'nav'> | Pick<NavIdProps, 'id'>>;
export declare const View: FC<Omit<ViewProps, 'activePanel' | 'history' | 'onSwipeback'> & NavIdRequiredProps>;
export declare const Root: FC<Omit<RootProps, 'activeView'> & NavIdRequiredProps>;
export declare const Epic: FC<Omit<EpicProps, 'activeStory'> & NavIdRequiredProps>;
export declare const ModalRoot: FC<ModalRootProps>;
export {};