getConventionalRoutes.d.ts 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import { IConfig } from '..'; import { IRoute } from './types'; interface IOpts { root: string; relDir?: string; componentPrefix?: string; config: IConfig; } export default function getRoutes(opts: IOpts): IRoute[]; export {};