guess-webpack
Version:
Webpack plugins for the Machine Learning-driven bundler
6 lines (5 loc) • 341 B
TypeScript
import { Mode } from './declarations';
import { RoutingModule, ProjectLayout } from '../../common/interfaces';
declare type KnownMode = Mode.Angular | Mode.Gatsby | Mode.ReactJSX | Mode.ReactTSX | Mode.PreactJSX;
export declare const defaultRouteProvider: (mode: KnownMode, config?: ProjectLayout | undefined) => RoutingModule[];
export {};