getConventionalRoutes.d.ts 243 Bytes
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 {};