Skip to content

Commit 155f013

Browse files
committed
-
1 parent 53d05d3 commit 155f013

14 files changed

+478
-129
lines changed

baselines/dom.generated.d.ts

Lines changed: 76 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18089,13 +18089,29 @@ interface IDBKeyRange {
1808918089
declare var IDBKeyRange: {
1809018090
prototype: IDBKeyRange;
1809118091
new(): IDBKeyRange;
18092-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static) */
18092+
/**
18093+
* Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
18094+
*
18095+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)
18096+
*/
1809318097
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
18094-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static) */
18098+
/**
18099+
* Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
18100+
*
18101+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
18102+
*/
1809518103
lowerBound(lower: any, open?: boolean): IDBKeyRange;
18096-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static) */
18104+
/**
18105+
* Returns a new IDBKeyRange spanning only key.
18106+
*
18107+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)
18108+
*/
1809718109
only(value: any): IDBKeyRange;
18098-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static) */
18110+
/**
18111+
* Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
18112+
*
18113+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
18114+
*/
1809918115
upperBound(upper: any, open?: boolean): IDBKeyRange;
1810018116
};
1810118117

@@ -20697,13 +20713,25 @@ declare var MessagePort: {
2069720713
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType)
2069820714
*/
2069920715
interface MimeType {
20700-
/** @deprecated */
20716+
/**
20717+
* Returns the MIME type's description.
20718+
* @deprecated
20719+
*/
2070120720
readonly description: string;
20702-
/** @deprecated */
20721+
/**
20722+
* Returns the Plugin object that implements this MIME type.
20723+
* @deprecated
20724+
*/
2070320725
readonly enabledPlugin: Plugin;
20704-
/** @deprecated */
20726+
/**
20727+
* Returns the MIME type's typical file extensions, in a comma-separated list.
20728+
* @deprecated
20729+
*/
2070520730
readonly suffixes: string;
20706-
/** @deprecated */
20731+
/**
20732+
* Returns the MIME type.
20733+
* @deprecated
20734+
*/
2070720735
readonly type: string;
2070820736
}
2070920737

@@ -22796,9 +22824,17 @@ interface PaymentResponse extends EventTarget {
2279622824
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerEmail)
2279722825
*/
2279822826
readonly payerEmail: string | null;
22799-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName) */
22827+
/**
22828+
* The **`payerName`** read-only property of the option is only present when the `requestPayerName` option is set to `true` in the options parameter of the A string containing the payer name.
22829+
*
22830+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)
22831+
*/
2280022832
readonly payerName: string | null;
22801-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerPhone) */
22833+
/**
22834+
* The `payerPhone` read-only property of the PaymentResponse interface returns the phone number supplied by the user.
22835+
*
22836+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerPhone)
22837+
*/
2280222838
readonly payerPhone: string | null;
2280322839
/**
2280422840
* The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.
@@ -23753,15 +23789,30 @@ declare var PictureInPictureWindow: {
2375323789
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin)
2375423790
*/
2375523791
interface Plugin {
23756-
/** @deprecated */
23792+
/**
23793+
* Returns the plugin's description.
23794+
* @deprecated
23795+
*/
2375723796
readonly description: string;
23758-
/** @deprecated */
23797+
/**
23798+
* Returns the plugin library's filename, if applicable on the current platform.
23799+
* @deprecated
23800+
*/
2375923801
readonly filename: string;
23760-
/** @deprecated */
23802+
/**
23803+
* Returns the number of MIME types, represented by MimeType objects, supported by the plugin.
23804+
* @deprecated
23805+
*/
2376123806
readonly length: number;
23762-
/** @deprecated */
23807+
/**
23808+
* Returns the plugin's name.
23809+
* @deprecated
23810+
*/
2376323811
readonly name: string;
23764-
/** @deprecated */
23812+
/**
23813+
* Returns the specified MimeType object.
23814+
* @deprecated
23815+
*/
2376523816
item(index: number): MimeType | null;
2376623817
/** @deprecated */
2376723818
namedItem(name: string): MimeType | null;
@@ -26546,9 +26597,17 @@ declare var SVGAnimatedString: {
2654626597
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
2654726598
*/
2654826599
interface SVGAnimatedTransformList {
26549-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
26600+
/**
26601+
* The **`animVal`** read-only property of the SVGAnimatedTransformList interface represents the animated value of the `transform` attribute of an SVG element.
26602+
*
26603+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal)
26604+
*/
2655026605
readonly animVal: SVGTransformList;
26551-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
26606+
/**
26607+
* The **`baseVal`** read-only property of the SVGAnimatedTransformList interface represents the non-animated value of the `transform` attribute of an SVG element.
26608+
*
26609+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal)
26610+
*/
2655226611
readonly baseVal: SVGTransformList;
2655326612
}
2655426613

baselines/serviceworker.generated.d.ts

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4387,13 +4387,29 @@ interface IDBKeyRange {
43874387
declare var IDBKeyRange: {
43884388
prototype: IDBKeyRange;
43894389
new(): IDBKeyRange;
4390-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static) */
4390+
/**
4391+
* Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
4392+
*
4393+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)
4394+
*/
43914395
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
4392-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static) */
4396+
/**
4397+
* Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
4398+
*
4399+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
4400+
*/
43934401
lowerBound(lower: any, open?: boolean): IDBKeyRange;
4394-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static) */
4402+
/**
4403+
* Returns a new IDBKeyRange spanning only key.
4404+
*
4405+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)
4406+
*/
43954407
only(value: any): IDBKeyRange;
4396-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static) */
4408+
/**
4409+
* Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
4410+
*
4411+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
4412+
*/
43974413
upperBound(upper: any, open?: boolean): IDBKeyRange;
43984414
};
43994415

baselines/sharedworker.generated.d.ts

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4102,13 +4102,29 @@ interface IDBKeyRange {
41024102
declare var IDBKeyRange: {
41034103
prototype: IDBKeyRange;
41044104
new(): IDBKeyRange;
4105-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static) */
4105+
/**
4106+
* Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
4107+
*
4108+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)
4109+
*/
41064110
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
4107-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static) */
4111+
/**
4112+
* Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
4113+
*
4114+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
4115+
*/
41084116
lowerBound(lower: any, open?: boolean): IDBKeyRange;
4109-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static) */
4117+
/**
4118+
* Returns a new IDBKeyRange spanning only key.
4119+
*
4120+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)
4121+
*/
41104122
only(value: any): IDBKeyRange;
4111-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static) */
4123+
/**
4124+
* Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
4125+
*
4126+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
4127+
*/
41124128
upperBound(upper: any, open?: boolean): IDBKeyRange;
41134129
};
41144130

baselines/ts5.5/dom.generated.d.ts

Lines changed: 76 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18069,13 +18069,29 @@ interface IDBKeyRange {
1806918069
declare var IDBKeyRange: {
1807018070
prototype: IDBKeyRange;
1807118071
new(): IDBKeyRange;
18072-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static) */
18072+
/**
18073+
* Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
18074+
*
18075+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)
18076+
*/
1807318077
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
18074-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static) */
18078+
/**
18079+
* Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
18080+
*
18081+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
18082+
*/
1807518083
lowerBound(lower: any, open?: boolean): IDBKeyRange;
18076-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static) */
18084+
/**
18085+
* Returns a new IDBKeyRange spanning only key.
18086+
*
18087+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)
18088+
*/
1807718089
only(value: any): IDBKeyRange;
18078-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static) */
18090+
/**
18091+
* Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
18092+
*
18093+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
18094+
*/
1807918095
upperBound(upper: any, open?: boolean): IDBKeyRange;
1808018096
};
1808118097

@@ -20677,13 +20693,25 @@ declare var MessagePort: {
2067720693
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType)
2067820694
*/
2067920695
interface MimeType {
20680-
/** @deprecated */
20696+
/**
20697+
* Returns the MIME type's description.
20698+
* @deprecated
20699+
*/
2068120700
readonly description: string;
20682-
/** @deprecated */
20701+
/**
20702+
* Returns the Plugin object that implements this MIME type.
20703+
* @deprecated
20704+
*/
2068320705
readonly enabledPlugin: Plugin;
20684-
/** @deprecated */
20706+
/**
20707+
* Returns the MIME type's typical file extensions, in a comma-separated list.
20708+
* @deprecated
20709+
*/
2068520710
readonly suffixes: string;
20686-
/** @deprecated */
20711+
/**
20712+
* Returns the MIME type.
20713+
* @deprecated
20714+
*/
2068720715
readonly type: string;
2068820716
}
2068920717

@@ -22776,9 +22804,17 @@ interface PaymentResponse extends EventTarget {
2277622804
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerEmail)
2277722805
*/
2277822806
readonly payerEmail: string | null;
22779-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName) */
22807+
/**
22808+
* The **`payerName`** read-only property of the option is only present when the `requestPayerName` option is set to `true` in the options parameter of the A string containing the payer name.
22809+
*
22810+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)
22811+
*/
2278022812
readonly payerName: string | null;
22781-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerPhone) */
22813+
/**
22814+
* The `payerPhone` read-only property of the PaymentResponse interface returns the phone number supplied by the user.
22815+
*
22816+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerPhone)
22817+
*/
2278222818
readonly payerPhone: string | null;
2278322819
/**
2278422820
* The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.
@@ -23733,15 +23769,30 @@ declare var PictureInPictureWindow: {
2373323769
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin)
2373423770
*/
2373523771
interface Plugin {
23736-
/** @deprecated */
23772+
/**
23773+
* Returns the plugin's description.
23774+
* @deprecated
23775+
*/
2373723776
readonly description: string;
23738-
/** @deprecated */
23777+
/**
23778+
* Returns the plugin library's filename, if applicable on the current platform.
23779+
* @deprecated
23780+
*/
2373923781
readonly filename: string;
23740-
/** @deprecated */
23782+
/**
23783+
* Returns the number of MIME types, represented by MimeType objects, supported by the plugin.
23784+
* @deprecated
23785+
*/
2374123786
readonly length: number;
23742-
/** @deprecated */
23787+
/**
23788+
* Returns the plugin's name.
23789+
* @deprecated
23790+
*/
2374323791
readonly name: string;
23744-
/** @deprecated */
23792+
/**
23793+
* Returns the specified MimeType object.
23794+
* @deprecated
23795+
*/
2374523796
item(index: number): MimeType | null;
2374623797
/** @deprecated */
2374723798
namedItem(name: string): MimeType | null;
@@ -26525,9 +26576,17 @@ declare var SVGAnimatedString: {
2652526576
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
2652626577
*/
2652726578
interface SVGAnimatedTransformList {
26528-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
26579+
/**
26580+
* The **`animVal`** read-only property of the SVGAnimatedTransformList interface represents the animated value of the `transform` attribute of an SVG element.
26581+
*
26582+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal)
26583+
*/
2652926584
readonly animVal: SVGTransformList;
26530-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
26585+
/**
26586+
* The **`baseVal`** read-only property of the SVGAnimatedTransformList interface represents the non-animated value of the `transform` attribute of an SVG element.
26587+
*
26588+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal)
26589+
*/
2653126590
readonly baseVal: SVGTransformList;
2653226591
}
2653326592

baselines/ts5.5/serviceworker.generated.d.ts

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4387,13 +4387,29 @@ interface IDBKeyRange {
43874387
declare var IDBKeyRange: {
43884388
prototype: IDBKeyRange;
43894389
new(): IDBKeyRange;
4390-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static) */
4390+
/**
4391+
* Returns a new IDBKeyRange spanning from lower to upper. If lowerOpen is true, lower is not included in the range. If upperOpen is true, upper is not included in the range.
4392+
*
4393+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static)
4394+
*/
43914395
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
4392-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static) */
4396+
/**
4397+
* Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
4398+
*
4399+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
4400+
*/
43934401
lowerBound(lower: any, open?: boolean): IDBKeyRange;
4394-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static) */
4402+
/**
4403+
* Returns a new IDBKeyRange spanning only key.
4404+
*
4405+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static)
4406+
*/
43954407
only(value: any): IDBKeyRange;
4396-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static) */
4408+
/**
4409+
* Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
4410+
*
4411+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
4412+
*/
43974413
upperBound(upper: any, open?: boolean): IDBKeyRange;
43984414
};
43994415

0 commit comments

Comments
 (0)