UNPKG

next-typesafe-path

Version:
12 lines (11 loc) 346 B
import { RouteFunctionDefinition } from './route'; export type { DynamicRouteType, RouteFunctionDefinition, RouteSegment, } from './route'; export type FileContentOption = { routes: RouteFunctionDefinition[]; options: UserOptions; }; export type UserOptions = { trailingSlash: boolean; watch?: boolean; configDir?: string; };