@@ -2286,9 +2286,9 @@ interface AbortSignal extends EventTarget {
22862286declare var AbortSignal: {
22872287 prototype: AbortSignal;
22882288 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 ) */
22902290 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 ) */
22922292 timeout(milliseconds: number): AbortSignal;
22932293};
22942294
@@ -13754,25 +13754,25 @@ declare var IDBKeyRange: {
1375413754 /**
1375513755 * 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.
1375613756 *
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 )
1375813758 */
1375913759 bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
1376013760 /**
1376113761 * Returns a new IDBKeyRange starting at key with no upper bound. If open is true, key is not included in the range.
1376213762 *
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 )
1376413764 */
1376513765 lowerBound(lower: any, open?: boolean): IDBKeyRange;
1376613766 /**
1376713767 * Returns a new IDBKeyRange spanning only key.
1376813768 *
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 )
1377013770 */
1377113771 only(value: any): IDBKeyRange;
1377213772 /**
1377313773 * Returns a new IDBKeyRange with no lower bound and ending at key. If open is true, key is not included in the range.
1377413774 *
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 )
1377613776 */
1377713777 upperBound(upper: any, open?: boolean): IDBKeyRange;
1377813778};
@@ -15097,7 +15097,7 @@ interface MediaRecorder extends EventTarget {
1509715097declare var MediaRecorder: {
1509815098 prototype: MediaRecorder;
1509915099 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 ) */
1510115101 isTypeSupported(type: string): boolean;
1510215102};
1510315103
@@ -15163,7 +15163,7 @@ interface MediaSource extends EventTarget {
1516315163declare var MediaSource: {
1516415164 prototype: MediaSource;
1516515165 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 ) */
1516715167 isTypeSupported(type: string): boolean;
1516815168};
1516915169
@@ -16343,7 +16343,7 @@ interface Notification extends EventTarget {
1634316343declare var Notification: {
1634416344 prototype: Notification;
1634516345 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 ) */
1634716347 readonly permission: NotificationPermission;
1634816348 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requestPermission) */
1634916349 requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;
@@ -17085,7 +17085,7 @@ interface PerformanceObserver {
1708517085declare var PerformanceObserver: {
1708617086 prototype: PerformanceObserver;
1708717087 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 ) */
1708917089 readonly supportedEntryTypes: ReadonlyArray<string>;
1709017090};
1709117091
@@ -17631,7 +17631,7 @@ declare var PublicKeyCredential: {
1763117631 prototype: PublicKeyCredential;
1763217632 new(): PublicKeyCredential;
1763317633 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 ) */
1763517635 isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
1763617636};
1763717637
@@ -18098,7 +18098,7 @@ interface RTCPeerConnection extends EventTarget {
1809818098declare var RTCPeerConnection: {
1809918099 prototype: RTCPeerConnection;
1810018100 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 ) */
1810218102 generateCertificate(keygenAlgorithm: AlgorithmIdentifier): Promise<RTCCertificate>;
1810318103};
1810418104
@@ -18734,9 +18734,9 @@ interface Response extends Body {
1873418734declare var Response: {
1873518735 prototype: Response;
1873618736 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 ) */
1873818738 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 ) */
1874018740 redirect(url: string | URL, status?: number): Response;
1874118741};
1874218742
@@ -22466,9 +22466,9 @@ interface URL {
2246622466declare var URL: {
2246722467 prototype: URL;
2246822468 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 ) */
2247022470 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 ) */
2247222472 revokeObjectURL(url: string): void;
2247322473};
2247422474
@@ -26314,7 +26314,7 @@ declare namespace CSS {
2631426314 function dvw(value: number): CSSUnitValue;
2631526315 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/em) */
2631626316 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 ) */
2631826318 function escape(ident: string): string;
2631926319 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSS/ex) */
2632026320 function ex(value: number): CSSUnitValue;
0 commit comments