UNPKG

@itznevikat/router

Version:

πŸ“¦ ΠœΠ½ΠΎΠ³ΠΎΡ„ΡƒΠ½ΠΊΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½Ρ‹ΠΉ Ρ€ΠΎΡƒΡ‚Π΅Ρ€ для ΠΏΡ€ΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΠΉ Π½Π° React ΠΈ VKUI

10 lines (9 loc) β€’ 620 B
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 {};