/** * Isomorphic signals * * @module */ /** * Combines an array of AbortSignals into a single signal that is aborted when any signal is * * @param {Iterable} signals - The signals to combine * @returns {AbortSignal} - The combined signal */ export function anySignal(signals: Iterable): AbortSignal; //# sourceMappingURL=signals.d.ts.map