@@ -4026,6 +4026,7 @@ interface DOMMatrixReadOnly {
40264026 toJSON(): any;
40274027 transformPoint(point?: DOMPointInit): DOMPoint;
40284028 translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
4029+ toString(): string;
40294030}
40304031
40314032declare var DOMMatrixReadOnly: {
@@ -4034,6 +4035,7 @@ declare var DOMMatrixReadOnly: {
40344035 fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
40354036 fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
40364037 fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
4038+ toString(): string;
40374039};
40384040
40394041/** Provides the ability to parse XML or HTML source code from a string into a DOM Document. */
@@ -4191,6 +4193,7 @@ interface DOMTokenList {
41914193 * Can be set, to change the associated attribute.
41924194 */
41934195 value: string;
4196+ toString(): string;
41944197 /**
41954198 * Adds all arguments passed, except those already present.
41964199 *
@@ -7071,6 +7074,7 @@ interface HTMLHyperlinkElementUtils {
70717074 host: string;
70727075 hostname: string;
70737076 href: string;
7077+ toString(): string;
70747078 readonly origin: string;
70757079 password: string;
70767080 pathname: string;
@@ -9924,6 +9928,7 @@ interface Location {
99249928 * Can be set, to navigate to the given URL.
99259929 */
99269930 href: string;
9931+ toString(): string;
99279932 /**
99289933 * Returns the Location object's URL's origin.
99299934 */
@@ -10382,10 +10387,10 @@ declare var MediaKeys: {
1038210387interface MediaList {
1038310388 readonly length: number;
1038410389 mediaText: string;
10390+ toString(): string;
1038510391 appendMedium(medium: string): void;
1038610392 deleteMedium(medium: string): void;
1038710393 item(index: number): string | null;
10388- toString(): number;
1038910394 [index: number]: string;
1039010395}
1039110396
@@ -12652,6 +12657,7 @@ interface Range extends AbstractRange {
1265212657 setStartAfter(node: Node): void;
1265312658 setStartBefore(node: Node): void;
1265412659 surroundContents(newParent: Node): void;
12660+ toString(): string;
1265512661 readonly END_TO_END: number;
1265612662 readonly END_TO_START: number;
1265712663 readonly START_TO_END: number;
@@ -12665,6 +12671,7 @@ declare var Range: {
1266512671 readonly END_TO_START: number;
1266612672 readonly START_TO_END: number;
1266712673 readonly START_TO_START: number;
12674+ toString(): string;
1266812675};
1266912676
1267012677interface ReadableByteStreamController {
@@ -15036,11 +15043,13 @@ interface Selection {
1503615043 selectAllChildren(node: Node): void;
1503715044 setBaseAndExtent(anchorNode: Node, anchorOffset: number, focusNode: Node, focusOffset: number): void;
1503815045 setPosition(node: Node | null, offset?: number): void;
15046+ toString(): string;
1503915047}
1504015048
1504115049declare var Selection: {
1504215050 prototype: Selection;
1504315051 new(): Selection;
15052+ toString(): string;
1504415053};
1504515054
1504615055interface ServiceUIFrameContext {
@@ -16045,6 +16054,7 @@ interface URL {
1604516054 host: string;
1604616055 hostname: string;
1604716056 href: string;
16057+ toString(): string;
1604816058 readonly origin: string;
1604916059 password: string;
1605016060 pathname: string;
@@ -16092,12 +16102,14 @@ interface URLSearchParams {
1609216102 */
1609316103 set(name: string, value: string): void;
1609416104 sort(): void;
16105+ toString(): string;
1609516106 forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void;
1609616107}
1609716108
1609816109declare var URLSearchParams: {
1609916110 prototype: URLSearchParams;
1610016111 new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
16112+ toString(): string;
1610116113};
1610216114
1610316115/** This WebVR API interface represents any VR device supported by this API. It includes generic information such as device IDs and descriptions, as well as methods for starting to present a VR scene, retrieving eye parameters and display capabilities, and other important functionality. */
0 commit comments