import { a as EnvironmentContext, v as RouteConfig, y as SamplingConfig } from "./types-B82IuY7M.mjs"; //#region src/nitro.d.ts interface NitroModuleOptions { /** * Enable or disable all logging globally. * @default true */ enabled?: boolean; /** * Environment context overrides. */ env?: Partial; /** * Enable pretty printing. * @default true in development, false in production */ pretty?: boolean; /** * Route patterns to include in logging. * Supports glob patterns like '/api/**'. * If not set, all routes are logged. */ include?: string[]; /** * Route patterns to exclude from logging. * Supports glob patterns like '/_nitro/**'. * Exclusions take precedence over inclusions. */ exclude?: string[]; /** * Route-specific service configuration. */ routes?: Record; /** * Sampling configuration for filtering logs. */ sampling?: SamplingConfig; } //#endregion export { NitroModuleOptions as t }; //# sourceMappingURL=nitro-Bqj5GhQh.d.mts.map