/** * @fileoverview Prewarm pattern computation for fitness recipe execution * * Derives glob patterns from resolved checks' fileTypes for file-cache prewarming. */ import type { Check } from '../framework/registry.js'; /** * Compute prewarm glob patterns from the resolved checks' fileTypes. * If any check is universal (no fileTypes), falls back to DEFAULT_PREWARM_PATTERNS. */ export declare function computePrewarmPatterns(checks: readonly Check[]): readonly string[]; //# sourceMappingURL=service-prewarm.d.ts.map