UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

8 lines (7 loc) • 188 B
import { Type } from '@nestjs/common'; export interface RouteTree { path: string; module?: Type<any>; children?: (RouteTree | Type<any>)[]; } export type Routes = RouteTree[];