@types/web 0.0.264 → 0.0.266
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +26 -13
- package/package.json +1 -1
- package/ts5.5/index.d.ts +26 -13
- package/ts5.6/index.d.ts +26 -13
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.266 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.266.
|
package/index.d.ts
CHANGED
|
@@ -10040,6 +10040,19 @@ declare var DeviceOrientationEvent: {
|
|
|
10040
10040
|
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
|
|
10041
10041
|
};
|
|
10042
10042
|
|
|
10043
|
+
/** Available only in secure contexts. */
|
|
10044
|
+
interface DigitalCredential extends Credential {
|
|
10045
|
+
readonly data: any;
|
|
10046
|
+
readonly protocol: string;
|
|
10047
|
+
toJSON(): any;
|
|
10048
|
+
}
|
|
10049
|
+
|
|
10050
|
+
declare var DigitalCredential: {
|
|
10051
|
+
prototype: DigitalCredential;
|
|
10052
|
+
new(): DigitalCredential;
|
|
10053
|
+
userAgentAllowsProtocol(protocol: string): boolean;
|
|
10054
|
+
};
|
|
10055
|
+
|
|
10043
10056
|
interface DocumentEventMap extends GlobalEventHandlersEventMap {
|
|
10044
10057
|
"DOMContentLoaded": Event;
|
|
10045
10058
|
"fullscreenchange": Event;
|
|
@@ -10696,7 +10709,7 @@ declare var Document: {
|
|
|
10696
10709
|
prototype: Document;
|
|
10697
10710
|
new(): Document;
|
|
10698
10711
|
/**
|
|
10699
|
-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse
|
|
10712
|
+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
|
|
10700
10713
|
*
|
|
10701
10714
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
|
|
10702
10715
|
*/
|
|
@@ -11370,7 +11383,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11370
11383
|
*/
|
|
11371
11384
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
11372
11385
|
/**
|
|
11373
|
-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse
|
|
11386
|
+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
|
|
11374
11387
|
*
|
|
11375
11388
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
|
|
11376
11389
|
*/
|
|
@@ -15300,7 +15313,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
|
|
|
15300
15313
|
*/
|
|
15301
15314
|
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
|
|
15302
15315
|
/**
|
|
15303
|
-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements
|
|
15316
|
+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
|
|
15304
15317
|
*
|
|
15305
15318
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
|
|
15306
15319
|
*/
|
|
@@ -17162,7 +17175,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17162
17175
|
*/
|
|
17163
17176
|
chOff: string;
|
|
17164
17177
|
/**
|
|
17165
|
-
* The **`colSpan`**
|
|
17178
|
+
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
17166
17179
|
*
|
|
17167
17180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
17168
17181
|
*/
|
|
@@ -17183,7 +17196,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17183
17196
|
*/
|
|
17184
17197
|
noWrap: boolean;
|
|
17185
17198
|
/**
|
|
17186
|
-
* The **`rowSpan`**
|
|
17199
|
+
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
17187
17200
|
*
|
|
17188
17201
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
17189
17202
|
*/
|
|
@@ -17242,7 +17255,7 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
17242
17255
|
*/
|
|
17243
17256
|
chOff: string;
|
|
17244
17257
|
/**
|
|
17245
|
-
* The **`span`**
|
|
17258
|
+
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
|
|
17246
17259
|
*
|
|
17247
17260
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
|
|
17248
17261
|
*/
|
|
@@ -18162,7 +18175,7 @@ declare var Headers: {
|
|
|
18162
18175
|
*/
|
|
18163
18176
|
interface Highlight {
|
|
18164
18177
|
/**
|
|
18165
|
-
*
|
|
18178
|
+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
|
|
18166
18179
|
*
|
|
18167
18180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
|
|
18168
18181
|
*/
|
|
@@ -24579,7 +24592,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
24579
24592
|
*/
|
|
24580
24593
|
readonly response: AuthenticatorResponse;
|
|
24581
24594
|
/**
|
|
24582
|
-
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns
|
|
24595
|
+
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
|
|
24583
24596
|
*
|
|
24584
24597
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
|
|
24585
24598
|
*/
|
|
@@ -25586,7 +25599,7 @@ declare var RTCPeerConnectionIceEvent: {
|
|
|
25586
25599
|
*/
|
|
25587
25600
|
interface RTCRtpReceiver {
|
|
25588
25601
|
/**
|
|
25589
|
-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter
|
|
25602
|
+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
|
|
25590
25603
|
*
|
|
25591
25604
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
|
|
25592
25605
|
*/
|
|
@@ -26126,7 +26139,7 @@ interface ReadableByteStreamController {
|
|
|
26126
26139
|
*/
|
|
26127
26140
|
close(): void;
|
|
26128
26141
|
/**
|
|
26129
|
-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is
|
|
26142
|
+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
|
|
26130
26143
|
*
|
|
26131
26144
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
|
|
26132
26145
|
*/
|
|
@@ -31136,7 +31149,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
|
|
|
31136
31149
|
*/
|
|
31137
31150
|
getHTML(options?: GetHTMLOptions): string;
|
|
31138
31151
|
/**
|
|
31139
|
-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse
|
|
31152
|
+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
|
|
31140
31153
|
*
|
|
31141
31154
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
|
|
31142
31155
|
*/
|
|
@@ -33297,7 +33310,7 @@ interface URLPattern {
|
|
|
33297
33310
|
*/
|
|
33298
33311
|
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
|
|
33299
33312
|
/**
|
|
33300
|
-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33313
|
+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33301
33314
|
*
|
|
33302
33315
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
|
|
33303
33316
|
*/
|
|
@@ -36683,7 +36696,7 @@ interface WebSocket extends EventTarget {
|
|
|
36683
36696
|
*
|
|
36684
36697
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/readyState)
|
|
36685
36698
|
*/
|
|
36686
|
-
readonly readyState:
|
|
36699
|
+
readonly readyState: 0 | 1 | 2 | 3;
|
|
36687
36700
|
/**
|
|
36688
36701
|
* The **`WebSocket.url`** read-only property returns the absolute URL of the WebSocket as resolved by the constructor.
|
|
36689
36702
|
*
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -10032,6 +10032,19 @@ declare var DeviceOrientationEvent: {
|
|
|
10032
10032
|
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
|
|
10033
10033
|
};
|
|
10034
10034
|
|
|
10035
|
+
/** Available only in secure contexts. */
|
|
10036
|
+
interface DigitalCredential extends Credential {
|
|
10037
|
+
readonly data: any;
|
|
10038
|
+
readonly protocol: string;
|
|
10039
|
+
toJSON(): any;
|
|
10040
|
+
}
|
|
10041
|
+
|
|
10042
|
+
declare var DigitalCredential: {
|
|
10043
|
+
prototype: DigitalCredential;
|
|
10044
|
+
new(): DigitalCredential;
|
|
10045
|
+
userAgentAllowsProtocol(protocol: string): boolean;
|
|
10046
|
+
};
|
|
10047
|
+
|
|
10035
10048
|
interface DocumentEventMap extends GlobalEventHandlersEventMap {
|
|
10036
10049
|
"DOMContentLoaded": Event;
|
|
10037
10050
|
"fullscreenchange": Event;
|
|
@@ -10688,7 +10701,7 @@ declare var Document: {
|
|
|
10688
10701
|
prototype: Document;
|
|
10689
10702
|
new(): Document;
|
|
10690
10703
|
/**
|
|
10691
|
-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse
|
|
10704
|
+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
|
|
10692
10705
|
*
|
|
10693
10706
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
|
|
10694
10707
|
*/
|
|
@@ -11360,7 +11373,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11360
11373
|
*/
|
|
11361
11374
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
11362
11375
|
/**
|
|
11363
|
-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse
|
|
11376
|
+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
|
|
11364
11377
|
*
|
|
11365
11378
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
|
|
11366
11379
|
*/
|
|
@@ -15285,7 +15298,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
|
|
|
15285
15298
|
*/
|
|
15286
15299
|
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
|
|
15287
15300
|
/**
|
|
15288
|
-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements
|
|
15301
|
+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
|
|
15289
15302
|
*
|
|
15290
15303
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
|
|
15291
15304
|
*/
|
|
@@ -17141,7 +17154,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17141
17154
|
*/
|
|
17142
17155
|
chOff: string;
|
|
17143
17156
|
/**
|
|
17144
|
-
* The **`colSpan`**
|
|
17157
|
+
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
17145
17158
|
*
|
|
17146
17159
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
17147
17160
|
*/
|
|
@@ -17162,7 +17175,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17162
17175
|
*/
|
|
17163
17176
|
noWrap: boolean;
|
|
17164
17177
|
/**
|
|
17165
|
-
* The **`rowSpan`**
|
|
17178
|
+
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
17166
17179
|
*
|
|
17167
17180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
17168
17181
|
*/
|
|
@@ -17221,7 +17234,7 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
17221
17234
|
*/
|
|
17222
17235
|
chOff: string;
|
|
17223
17236
|
/**
|
|
17224
|
-
* The **`span`**
|
|
17237
|
+
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
|
|
17225
17238
|
*
|
|
17226
17239
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
|
|
17227
17240
|
*/
|
|
@@ -18141,7 +18154,7 @@ declare var Headers: {
|
|
|
18141
18154
|
*/
|
|
18142
18155
|
interface Highlight {
|
|
18143
18156
|
/**
|
|
18144
|
-
*
|
|
18157
|
+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
|
|
18145
18158
|
*
|
|
18146
18159
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
|
|
18147
18160
|
*/
|
|
@@ -24558,7 +24571,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
24558
24571
|
*/
|
|
24559
24572
|
readonly response: AuthenticatorResponse;
|
|
24560
24573
|
/**
|
|
24561
|
-
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns
|
|
24574
|
+
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
|
|
24562
24575
|
*
|
|
24563
24576
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
|
|
24564
24577
|
*/
|
|
@@ -25565,7 +25578,7 @@ declare var RTCPeerConnectionIceEvent: {
|
|
|
25565
25578
|
*/
|
|
25566
25579
|
interface RTCRtpReceiver {
|
|
25567
25580
|
/**
|
|
25568
|
-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter
|
|
25581
|
+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
|
|
25569
25582
|
*
|
|
25570
25583
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
|
|
25571
25584
|
*/
|
|
@@ -26105,7 +26118,7 @@ interface ReadableByteStreamController {
|
|
|
26105
26118
|
*/
|
|
26106
26119
|
close(): void;
|
|
26107
26120
|
/**
|
|
26108
|
-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is
|
|
26121
|
+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
|
|
26109
26122
|
*
|
|
26110
26123
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
|
|
26111
26124
|
*/
|
|
@@ -31114,7 +31127,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
|
|
|
31114
31127
|
*/
|
|
31115
31128
|
getHTML(options?: GetHTMLOptions): string;
|
|
31116
31129
|
/**
|
|
31117
|
-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse
|
|
31130
|
+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
|
|
31118
31131
|
*
|
|
31119
31132
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
|
|
31120
31133
|
*/
|
|
@@ -33274,7 +33287,7 @@ interface URLPattern {
|
|
|
33274
33287
|
*/
|
|
33275
33288
|
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
|
|
33276
33289
|
/**
|
|
33277
|
-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33290
|
+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33278
33291
|
*
|
|
33279
33292
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
|
|
33280
33293
|
*/
|
|
@@ -36660,7 +36673,7 @@ interface WebSocket extends EventTarget {
|
|
|
36660
36673
|
*
|
|
36661
36674
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/readyState)
|
|
36662
36675
|
*/
|
|
36663
|
-
readonly readyState:
|
|
36676
|
+
readonly readyState: 0 | 1 | 2 | 3;
|
|
36664
36677
|
/**
|
|
36665
36678
|
* The **`WebSocket.url`** read-only property returns the absolute URL of the WebSocket as resolved by the constructor.
|
|
36666
36679
|
*
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -10040,6 +10040,19 @@ declare var DeviceOrientationEvent: {
|
|
|
10040
10040
|
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
|
|
10041
10041
|
};
|
|
10042
10042
|
|
|
10043
|
+
/** Available only in secure contexts. */
|
|
10044
|
+
interface DigitalCredential extends Credential {
|
|
10045
|
+
readonly data: any;
|
|
10046
|
+
readonly protocol: string;
|
|
10047
|
+
toJSON(): any;
|
|
10048
|
+
}
|
|
10049
|
+
|
|
10050
|
+
declare var DigitalCredential: {
|
|
10051
|
+
prototype: DigitalCredential;
|
|
10052
|
+
new(): DigitalCredential;
|
|
10053
|
+
userAgentAllowsProtocol(protocol: string): boolean;
|
|
10054
|
+
};
|
|
10055
|
+
|
|
10043
10056
|
interface DocumentEventMap extends GlobalEventHandlersEventMap {
|
|
10044
10057
|
"DOMContentLoaded": Event;
|
|
10045
10058
|
"fullscreenchange": Event;
|
|
@@ -10696,7 +10709,7 @@ declare var Document: {
|
|
|
10696
10709
|
prototype: Document;
|
|
10697
10710
|
new(): Document;
|
|
10698
10711
|
/**
|
|
10699
|
-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse
|
|
10712
|
+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
|
|
10700
10713
|
*
|
|
10701
10714
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
|
|
10702
10715
|
*/
|
|
@@ -11370,7 +11383,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
|
|
|
11370
11383
|
*/
|
|
11371
11384
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
11372
11385
|
/**
|
|
11373
|
-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse
|
|
11386
|
+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
|
|
11374
11387
|
*
|
|
11375
11388
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
|
|
11376
11389
|
*/
|
|
@@ -15300,7 +15313,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
|
|
|
15300
15313
|
*/
|
|
15301
15314
|
readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
|
|
15302
15315
|
/**
|
|
15303
|
-
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements
|
|
15316
|
+
* The **`webkitdirectory`** property of the HTMLInputElement interface reflects the `webkitdirectory` HTML attribute, which indicates that `<input type='file'>` elements can only select directories instead of files.
|
|
15304
15317
|
*
|
|
15305
15318
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory)
|
|
15306
15319
|
*/
|
|
@@ -17162,7 +17175,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17162
17175
|
*/
|
|
17163
17176
|
chOff: string;
|
|
17164
17177
|
/**
|
|
17165
|
-
* The **`colSpan`**
|
|
17178
|
+
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
17166
17179
|
*
|
|
17167
17180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
17168
17181
|
*/
|
|
@@ -17183,7 +17196,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17183
17196
|
*/
|
|
17184
17197
|
noWrap: boolean;
|
|
17185
17198
|
/**
|
|
17186
|
-
* The **`rowSpan`**
|
|
17199
|
+
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
17187
17200
|
*
|
|
17188
17201
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
17189
17202
|
*/
|
|
@@ -17242,7 +17255,7 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
17242
17255
|
*/
|
|
17243
17256
|
chOff: string;
|
|
17244
17257
|
/**
|
|
17245
|
-
* The **`span`**
|
|
17258
|
+
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
|
|
17246
17259
|
*
|
|
17247
17260
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
|
|
17248
17261
|
*/
|
|
@@ -18162,7 +18175,7 @@ declare var Headers: {
|
|
|
18162
18175
|
*/
|
|
18163
18176
|
interface Highlight {
|
|
18164
18177
|
/**
|
|
18165
|
-
*
|
|
18178
|
+
* The `priority` property of the Highlight interface is a number used to determine which highlight's styles should be used to resolve style conflicts in overlapping parts.
|
|
18166
18179
|
*
|
|
18167
18180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority)
|
|
18168
18181
|
*/
|
|
@@ -24579,7 +24592,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
24579
24592
|
*/
|
|
24580
24593
|
readonly response: AuthenticatorResponse;
|
|
24581
24594
|
/**
|
|
24582
|
-
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns
|
|
24595
|
+
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
|
|
24583
24596
|
*
|
|
24584
24597
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
|
|
24585
24598
|
*/
|
|
@@ -25586,7 +25599,7 @@ declare var RTCPeerConnectionIceEvent: {
|
|
|
25586
25599
|
*/
|
|
25587
25600
|
interface RTCRtpReceiver {
|
|
25588
25601
|
/**
|
|
25589
|
-
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter
|
|
25602
|
+
* The **`jitterBufferTarget`** property of the RTCRtpReceiver interface is a DOMHighResTimeStamp that indicates the application's preferred duration, in milliseconds, for which the jitter should hold media before playing it out.
|
|
25590
25603
|
*
|
|
25591
25604
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget)
|
|
25592
25605
|
*/
|
|
@@ -26126,7 +26139,7 @@ interface ReadableByteStreamController {
|
|
|
26126
26139
|
*/
|
|
26127
26140
|
close(): void;
|
|
26128
26141
|
/**
|
|
26129
|
-
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is
|
|
26142
|
+
* The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is transferred into the stream's internal queues).
|
|
26130
26143
|
*
|
|
26131
26144
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue)
|
|
26132
26145
|
*/
|
|
@@ -31136,7 +31149,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
|
|
|
31136
31149
|
*/
|
|
31137
31150
|
getHTML(options?: GetHTMLOptions): string;
|
|
31138
31151
|
/**
|
|
31139
|
-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse
|
|
31152
|
+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
|
|
31140
31153
|
*
|
|
31141
31154
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
|
|
31142
31155
|
*/
|
|
@@ -33297,7 +33310,7 @@ interface URLPattern {
|
|
|
33297
33310
|
*/
|
|
33298
33311
|
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
|
|
33299
33312
|
/**
|
|
33300
|
-
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33313
|
+
* The **`test()`** method of the URLPattern interface takes a URL string or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33301
33314
|
*
|
|
33302
33315
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
|
|
33303
33316
|
*/
|
|
@@ -36683,7 +36696,7 @@ interface WebSocket extends EventTarget {
|
|
|
36683
36696
|
*
|
|
36684
36697
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/readyState)
|
|
36685
36698
|
*/
|
|
36686
|
-
readonly readyState:
|
|
36699
|
+
readonly readyState: 0 | 1 | 2 | 3;
|
|
36687
36700
|
/**
|
|
36688
36701
|
* The **`WebSocket.url`** read-only property returns the absolute URL of the WebSocket as resolved by the constructor.
|
|
36689
36702
|
*
|