import { BaseCommand } from '@adonisjs/core/ace'; import type { CommandOptions } from '@adonisjs/core/types/ace'; /** * Generates a frontend-consumable file of all named routes. */ export default class GenerateRoutes extends BaseCommand { #private; static commandName: string; static description: string; static options: CommandOptions; match?: string; middleware?: string[]; ignoreMiddleware?: string[]; display?: boolean; /** * Builds a nested route map from a flat array of AdonisJS routes. */ private buildAndMapRoutes; run(): Promise; }