/**** * Response Builder Types * Type definitions for response construction */ export type { CORSConfig, SyncCORSConfig } from "../cors/index.js"; import type { SecurityConfig } from "../../../types/index.js"; export type { SecurityConfig } from "../../../types/index.js"; export type CacheStrategy = "no-cache" | "no-store" | "short" | "medium" | "long" | "immutable" | "none" | { maxAge: number; public?: boolean; immutable?: boolean; mustRevalidate?: boolean; staleWhileRevalidate?: number; }; export interface ResponseBuilderConfig { securityConfig?: SecurityConfig | null; isDev?: boolean; adapter?: import("../../../platform/adapters/base.js").RuntimeAdapter; nonce?: string; /** Select the explicit hosted-Studio `frame-ancestors` allowlist. */ isVeryfrontDomain?: boolean; } //# sourceMappingURL=types.d.ts.map