| 84 | } |
| 85 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */ |
| 86 | interface Console { |
| 87 | "assert"(condition?: boolean, ...data: any[]): void; |
| 88 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */ |
| 89 | clear(): void; |
| 90 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */ |
| 91 | count(label?: string): void; |
| 92 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */ |
| 93 | countReset(label?: string): void; |
| 94 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */ |
| 95 | debug(...data: any[]): void; |
| 96 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */ |
| 97 | dir(item?: any, options?: any): void; |
| 98 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */ |
| 99 | dirxml(...data: any[]): void; |
| 100 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */ |
| 101 | error(...data: any[]): void; |
| 102 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */ |
| 103 | group(...data: any[]): void; |
| 104 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */ |
| 105 | groupCollapsed(...data: any[]): void; |
| 106 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */ |
| 107 | groupEnd(): void; |
| 108 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */ |
| 109 | info(...data: any[]): void; |
| 110 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */ |
| 111 | log(...data: any[]): void; |
| 112 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */ |
| 113 | table(tabularData?: any, properties?: string[]): void; |
| 114 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */ |
| 115 | time(label?: string): void; |
| 116 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */ |
| 117 | timeEnd(label?: string): void; |
| 118 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */ |
| 119 | timeLog(label?: string, ...data: any[]): void; |
| 120 | timeStamp(label?: string): void; |
| 121 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */ |
| 122 | trace(...data: any[]): void; |
| 123 | /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */ |
| 124 | warn(...data: any[]): void; |
| 125 | } |
| 126 | declare const console: Console; |
| 127 | type BufferSource = ArrayBufferView | ArrayBuffer; |
| 128 | type TypedArray = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array; |
no outgoing calls
no test coverage detected