@@ -2286,9 +2286,9 @@ interface AbortSignal extends EventTarget {
2286
2286
declare var AbortSignal: {
2287
2287
prototype: AbortSignal;
2288
2288
new(): AbortSignal;
2289
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort ) */
2289
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static ) */
2290
2290
abort(reason?: any): AbortSignal;
2291
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout ) */
2291
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static ) */
2292
2292
timeout(milliseconds: number): AbortSignal;
2293
2293
};
2294
2294
@@ -13754,25 +13754,25 @@ declare var IDBKeyRange: {
13754
13754
/**
13755
13755
* 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.
13756
13756
*
13757
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound )
13757
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/bound_static )
13758
13758
*/
13759
13759
bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
13760
13760
/**
13761
13761
* Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
13762
13762
*
13763
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound )
13763
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static )
13764
13764
*/
13765
13765
lowerBound(lower: any, open?: boolean): IDBKeyRange;
13766
13766
/**
13767
13767
* Returns a new IDBKeyRange spanning only key.
13768
13768
*
13769
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only )
13769
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/only_static )
13770
13770
*/
13771
13771
only(value: any): IDBKeyRange;
13772
13772
/**
13773
13773
* Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
13774
13774
*
13775
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound )
13775
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static )
13776
13776
*/
13777
13777
upperBound(upper: any, open?: boolean): IDBKeyRange;
13778
13778
};
@@ -15097,7 +15097,7 @@ interface MediaRecorder extends EventTarget {
15097
15097
declare var MediaRecorder: {
15098
15098
prototype: MediaRecorder;
15099
15099
new(stream: MediaStream, options?: MediaRecorderOptions): MediaRecorder;
15100
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/isTypeSupported ) */
15100
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/isTypeSupported_static ) */
15101
15101
isTypeSupported(type: string): boolean;
15102
15102
};
15103
15103
@@ -15163,7 +15163,7 @@ interface MediaSource extends EventTarget {
15163
15163
declare var MediaSource: {
15164
15164
prototype: MediaSource;
15165
15165
new(): MediaSource;
15166
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/isTypeSupported ) */
15166
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/isTypeSupported_static ) */
15167
15167
isTypeSupported(type: string): boolean;
15168
15168
};
15169
15169
@@ -16343,7 +16343,7 @@ interface Notification extends EventTarget {
16343
16343
declare var Notification: {
16344
16344
prototype: Notification;
16345
16345
new(title: string, options?: NotificationOptions): Notification;
16346
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/permission ) */
16346
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/permission_static ) */
16347
16347
readonly permission: NotificationPermission;
16348
16348
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requestPermission) */
16349
16349
requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;
@@ -17085,7 +17085,7 @@ interface PerformanceObserver {
17085
17085
declare var PerformanceObserver: {
17086
17086
prototype: PerformanceObserver;
17087
17087
new(callback: PerformanceObserverCallback): PerformanceObserver;
17088
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/supportedEntryTypes ) */
17088
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/supportedEntryTypes_static ) */
17089
17089
readonly supportedEntryTypes: ReadonlyArray<string>;
17090
17090
};
17091
17091
@@ -17631,7 +17631,7 @@ declare var PublicKeyCredential: {
17631
17631
prototype: PublicKeyCredential;
17632
17632
new(): PublicKeyCredential;
17633
17633
isConditionalMediationAvailable(): Promise<boolean>;
17634
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable ) */
17634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static ) */
17635
17635
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
17636
17636
};
17637
17637
@@ -18098,7 +18098,7 @@ interface RTCPeerConnection extends EventTarget {
18098
18098
declare var RTCPeerConnection: {
18099
18099
prototype: RTCPeerConnection;
18100
18100
new(configuration?: RTCConfiguration): RTCPeerConnection;
18101
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/generateCertificate ) */
18101
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/generateCertificate_static ) */
18102
18102
generateCertificate(keygenAlgorithm: AlgorithmIdentifier): Promise<RTCCertificate>;
18103
18103
};
18104
18104
@@ -18734,9 +18734,9 @@ interface Response extends Body {
18734
18734
declare var Response: {
18735
18735
prototype: Response;
18736
18736
new(body?: BodyInit | null, init?: ResponseInit): Response;
18737
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/error ) */
18737
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/error_static ) */
18738
18738
error(): Response;
18739
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirect ) */
18739
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirect_static ) */
18740
18740
redirect(url: string | URL, status?: number): Response;
18741
18741
};
18742
18742
@@ -22466,9 +22466,9 @@ interface URL {
22466
22466
declare var URL: {
22467
22467
prototype: URL;
22468
22468
new(url: string | URL, base?: string | URL): URL;
22469
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL ) */
22469
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static ) */
22470
22470
createObjectURL(obj: Blob | MediaSource): string;
22471
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL ) */
22471
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static ) */
22472
22472
revokeObjectURL(url: string): void;
22473
22473
};
22474
22474
@@ -26314,7 +26314,7 @@ declare namespace CSS {
26314
26314
function dvw(value: number): CSSUnitValue;
26315
26315
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/em) */
26316
26316
function em(value: number): CSSUnitValue;
26317
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape ) */
26317
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/escape_static ) */
26318
26318
function escape(ident: string): string;
26319
26319
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/ex) */
26320
26320
function ex(value: number): CSSUnitValue;
0 commit comments