export { MAX_TIMER_DELAY_MS } from "./constants/limits.js"; /** * Normalize a requested delay to the portable JavaScript timer domain. * * Fractional milliseconds round up so a timeout never fires earlier than the * caller requested. Negative, non-finite, and overflowing values are rejected * instead of being silently clamped by the runtime. */ export declare function normalizeTimerDurationMs(durationMs: number, optionName?: string): number; //# sourceMappingURL=timer.d.ts.map