UNPKG

drawer-stack

Version:
7 lines (6 loc) 308 B
import { type RouteObject, type PathMatch } from "react-router"; export declare const flattenRoutes: (routes: RouteObject[], parentPath?: string) => RouteObject[]; export declare const findRouteAndMatch: (path: string, routes: RouteObject[]) => { route: RouteObject; match: PathMatch; } | undefined;