import type { Middleware } from "./middleware.js"; /** * Options for route groups. * * @typeParam TLocals — Shape of `ctx.locals` (inherited from `createApp()`) */ export interface GroupOptions> { /** URL prefix for all routes in the group */ prefix: string; /** Middleware to apply to all routes in the group */ middleware?: Middleware[]; /** Name prefix for all routes in the group */ name?: string; } //# sourceMappingURL=groupOptions.d.ts.map