import { Guard } from '../Guards/Guard'; import { Controller } from '../Controller/export'; export interface IRoute { path: string; guard?: Guard[]; controller?: Controller; subpaths?: IRoute[]; } //# sourceMappingURL=Route.interface.d.ts.map