summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.webworker.iterable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.webworker.iterable.d.ts')
-rw-r--r--cli/tsc/dts/lib.webworker.iterable.d.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.webworker.iterable.d.ts b/cli/tsc/dts/lib.webworker.iterable.d.ts
index 54f5528b2..4f53ad5e0 100644
--- a/cli/tsc/dts/lib.webworker.iterable.d.ts
+++ b/cli/tsc/dts/lib.webworker.iterable.d.ts
@@ -20,6 +20,11 @@ and limitations under the License.
/// Worker Iterable APIs
/////////////////////////////
+interface AbortSignal {
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */
+ any(signals: Iterable<AbortSignal>): AbortSignal;
+}
+
interface CSSNumericArray {
[Symbol.iterator](): IterableIterator<CSSNumericValue>;
entries(): IterableIterator<[number, CSSNumericValue]>;