UNPKG

183 BTypeScriptView Raw
1import { Type } from '@nestjs/common';
2export interface RouteTree {
3 path: string;
4 module?: Type<any>;
5 children?: Routes | Type<any>[];
6}
7export type Routes = RouteTree[];