routesToJSON.d.ts 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import { IRoute } from './types'; interface IOpts { routes: IRoute[]; config: any; cwd?: string; isServer?: boolean; } export default function ({ routes, config, cwd, isServer }: IOpts): string; export {};