export interface AuthConfig { type: "bearer" | "apiKey" | "basic" | "none"; value: string; headerName?: string; } export interface HttpResponse { status: number; headers: Record; data: unknown; } export interface RuntimeConfig { specPath: string; baseUrl: string; auth: AuthConfig; output: string; maxItems?: number; verbose: boolean; quiet: boolean; } //# sourceMappingURL=types.d.ts.map