routesToJSON.d.ts 222 Bytes
import { IRoute } from './types';
interface IOpts {
    routes: IRoute[];
    config: any;
    cwd?: string;
    isServer?: boolean;
}
export default function ({ routes, config, cwd, isServer }: IOpts): string;
export {};