Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/react-router/dist/lib/components.d.ts
rd565449 r0c6b92a 26 26 * A `<Router>` that stores all entries in memory. 27 27 * 28 * @see https://reactrouter.com/ router-components/memory-router28 * @see https://reactrouter.com/v6/router-components/memory-router 29 29 */ 30 30 export declare function MemoryRouter({ basename, children, initialEntries, initialIndex, future, }: MemoryRouterProps): React.ReactElement; … … 42 42 * `useNavigate` hook instead. 43 43 * 44 * @see https://reactrouter.com/ components/navigate44 * @see https://reactrouter.com/v6/components/navigate 45 45 */ 46 46 export declare function Navigate({ to, replace, state, relative, }: NavigateProps): null; … … 51 51 * Renders the child route's element, if there is one. 52 52 * 53 * @see https://reactrouter.com/ components/outlet53 * @see https://reactrouter.com/v6/components/outlet 54 54 */ 55 55 export declare function Outlet(props: OutletProps): React.ReactElement | null; … … 98 98 * Declares an element that should be rendered at a certain URL path. 99 99 * 100 * @see https://reactrouter.com/ components/route100 * @see https://reactrouter.com/v6/components/route 101 101 */ 102 102 export declare function Route(_props: RouteProps): React.ReactElement | null; … … 117 117 * in web browsers or a `<StaticRouter>` for server rendering. 118 118 * 119 * @see https://reactrouter.com/ router-components/router119 * @see https://reactrouter.com/v6/router-components/router 120 120 */ 121 121 export declare function Router({ basename: basenameProp, children, location: locationProp, navigationType, navigator, static: staticProp, future, }: RouterProps): React.ReactElement | null; … … 128 128 * that best matches the current location. 129 129 * 130 * @see https://reactrouter.com/ components/routes130 * @see https://reactrouter.com/v6/components/routes 131 131 */ 132 132 export declare function Routes({ children, location, }: RoutesProps): React.ReactElement | null; … … 149 149 * `<Routes>` to create a route config from its children. 150 150 * 151 * @see https://reactrouter.com/ utils/create-routes-from-children151 * @see https://reactrouter.com/v6/utils/create-routes-from-children 152 152 */ 153 153 export declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[];
Note:
See TracChangeset
for help on using the changeset viewer.