@better-typescript-lib/dom
Advanced tools
Comparing version 2.7.0 to 2.8.0
@@ -12,1 +12,8 @@ /// <reference no-default-lib="true"/> | ||
} | ||
interface ReadableStream<R = any> { | ||
[Symbol.asyncIterator]( | ||
options?: ReadableStreamIteratorOptions, | ||
): AsyncIterableIterator<R>; | ||
values(options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>; | ||
} |
@@ -6,2 +6,7 @@ /// <reference no-default-lib="true"/> | ||
interface AbortSignal { | ||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) */ | ||
any(signals: Iterable<AbortSignal>): AbortSignal; | ||
} | ||
interface AudioParam { | ||
@@ -86,2 +91,4 @@ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime) */ | ||
interface CustomStateSet extends Set<string> {} | ||
interface DOMRectList { | ||
@@ -88,0 +95,0 @@ [Symbol.iterator](): IterableIterator<DOMRect>; |
{ | ||
"name": "@better-typescript-lib/dom", | ||
"version": "2.7.0", | ||
"version": "2.8.0", | ||
"description": "Better TypeScript standard library", | ||
@@ -5,0 +5,0 @@ "types": "./index.d.ts", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1356424
34204