You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/dom.iterable.generated.d.ts
+1-11Lines changed: 1 addition & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ interface Headers {
101
101
102
102
interface IDBDatabase {
103
103
/** Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. */
/** An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API. */
986
990
interface DOMException extends Error {
991
+
/** @deprecated */
987
992
readonly code: number;
988
993
readonly message: string;
989
994
readonly name: string;
@@ -1446,7 +1451,7 @@ declare var EventTarget: {
1446
1451
1447
1452
/** Extends the lifetime of the install and activate events dispatched on the global scope as part of the service worker lifecycle. This ensures that any functional events (like FetchEvent) are not dispatched until it upgrades database schemas and deletes the outdated cache entries. */
/** Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. */
/** This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object. */
2686
2691
interface ReadableStream<R = any> {
2687
2692
readonly locked: boolean;
@@ -2697,6 +2702,27 @@ declare var ReadableStream: {
@@ -5351,7 +5378,7 @@ declare var WorkerLocation: {
5351
5378
};
5352
5379
5353
5380
/** A subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator. */
@@ -5375,6 +5402,7 @@ declare var WritableStream: {
5375
5402
5376
5403
/** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */
5377
5404
interface WritableStreamDefaultController {
5405
+
readonly signal: AbortSignal;
5378
5406
error(e?: any): void;
5379
5407
}
5380
5408
@@ -5798,8 +5826,8 @@ declare var origin: string;
5798
5826
declare var performance: Performance;
5799
5827
declare function atob(data: string): string;
5800
5828
declare function btoa(data: string): string;
5801
-
declare function clearInterval(id?: number): void;
5802
-
declare function clearTimeout(id?: number): void;
5829
+
declare function clearInterval(id: number | undefined): void;
5830
+
declare function clearTimeout(id: number | undefined): void;
5803
5831
declare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
Copy file name to clipboardExpand all lines: src/lib/webworker.iterable.generated.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ interface Headers {
39
39
40
40
interface IDBDatabase {
41
41
/** Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. */
0 commit comments