/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/react/src/models/RouteInfo.ts
19 строк
552 B
Liam DeBeasi
chore(react): migrate to eslint, add prettier (#26633)
19 янв 2023, 00:49
Не верифицирован
19 янв 2023, 00:49
b02190d
Код
Авторство
О чём код?
import type { AnimationBuilder } from '@ionic/core/components'; import type { RouteAction } from './RouteAction'; import type { RouterDirection } from './RouterDirection'; export interface RouteInfo<TOptions = any> { id: string; lastPathname?: string; prevRouteLastPathname?: string; routeAction?: RouteAction; routeDirection?: RouterDirection; routeAnimation?: AnimationBuilder; routeOptions?: TOptions; params?: { [key: string]: string | string[] }; pushedByRoute?: string; pathname: string; search: string; tab?: string; }