| 123 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) |
| 124 | */ |
| 125 | interface Console { |
| 126 | "assert"(condition?: boolean, ...data: any[]): void; |
| 127 | /** |
| 128 | * The **`console.clear()`** static method clears the console if possible. |
| 129 | * |
| 130 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) |
| 131 | */ |
| 132 | clear(): void; |
| 133 | /** |
| 134 | * The **`console.count()`** static method logs the number of times that this particular call to `count()` has been called. |
| 135 | * |
| 136 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) |
| 137 | */ |
| 138 | count(label?: string): void; |
| 139 | /** |
| 140 | * The **`console.countReset()`** static method resets counter used with console/count_static. |
| 141 | * |
| 142 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) |
| 143 | */ |
| 144 | countReset(label?: string): void; |
| 145 | /** |
| 146 | * The **`console.debug()`** static method outputs a message to the console at the 'debug' log level. |
| 147 | * |
| 148 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) |
| 149 | */ |
| 150 | debug(...data: any[]): void; |
| 151 | /** |
| 152 | * The **`console.dir()`** static method displays a list of the properties of the specified JavaScript object. |
| 153 | * |
| 154 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) |
| 155 | */ |
| 156 | dir(item?: any, options?: any): void; |
| 157 | /** |
| 158 | * The **`console.dirxml()`** static method displays an interactive tree of the descendant elements of the specified XML/HTML element. |
| 159 | * |
| 160 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) |
| 161 | */ |
| 162 | dirxml(...data: any[]): void; |
| 163 | /** |
| 164 | * The **`console.error()`** static method outputs a message to the console at the 'error' log level. |
| 165 | * |
| 166 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) |
| 167 | */ |
| 168 | error(...data: any[]): void; |
| 169 | /** |
| 170 | * The **`console.group()`** static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console/groupEnd_static is called. |
| 171 | * |
| 172 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) |
| 173 | */ |
| 174 | group(...data: any[]): void; |
| 175 | /** |
| 176 | * The **`console.groupCollapsed()`** static method creates a new inline group in the console. |
| 177 | * |
| 178 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) |
| 179 | */ |
| 180 | groupCollapsed(...data: any[]): void; |
| 181 | /** |
| 182 | * The **`console.groupEnd()`** static method exits the current inline group in the console. |
no outgoing calls
no test coverage detected