11cb0ef41Sopenharmony_ci// GENERATED CONTENT - DO NOT EDIT
21cb0ef41Sopenharmony_ci// Content was automatically extracted by Reffy into webref
31cb0ef41Sopenharmony_ci// (https://github.com/w3c/webref)
41cb0ef41Sopenharmony_ci// Source: Console Standard (https://console.spec.whatwg.org/)
51cb0ef41Sopenharmony_ci
61cb0ef41Sopenharmony_ci[Exposed=(Window,Worker,Worklet)]
71cb0ef41Sopenharmony_cinamespace console { // but see namespace object requirements below
81cb0ef41Sopenharmony_ci  // Logging
91cb0ef41Sopenharmony_ci  undefined assert(optional boolean condition = false, any... data);
101cb0ef41Sopenharmony_ci  undefined clear();
111cb0ef41Sopenharmony_ci  undefined debug(any... data);
121cb0ef41Sopenharmony_ci  undefined error(any... data);
131cb0ef41Sopenharmony_ci  undefined info(any... data);
141cb0ef41Sopenharmony_ci  undefined log(any... data);
151cb0ef41Sopenharmony_ci  undefined table(optional any tabularData, optional sequence<DOMString> properties);
161cb0ef41Sopenharmony_ci  undefined trace(any... data);
171cb0ef41Sopenharmony_ci  undefined warn(any... data);
181cb0ef41Sopenharmony_ci  undefined dir(optional any item, optional object? options);
191cb0ef41Sopenharmony_ci  undefined dirxml(any... data);
201cb0ef41Sopenharmony_ci
211cb0ef41Sopenharmony_ci  // Counting
221cb0ef41Sopenharmony_ci  undefined count(optional DOMString label = "default");
231cb0ef41Sopenharmony_ci  undefined countReset(optional DOMString label = "default");
241cb0ef41Sopenharmony_ci
251cb0ef41Sopenharmony_ci  // Grouping
261cb0ef41Sopenharmony_ci  undefined group(any... data);
271cb0ef41Sopenharmony_ci  undefined groupCollapsed(any... data);
281cb0ef41Sopenharmony_ci  undefined groupEnd();
291cb0ef41Sopenharmony_ci
301cb0ef41Sopenharmony_ci  // Timing
311cb0ef41Sopenharmony_ci  undefined time(optional DOMString label = "default");
321cb0ef41Sopenharmony_ci  undefined timeLog(optional DOMString label = "default", any... data);
331cb0ef41Sopenharmony_ci  undefined timeEnd(optional DOMString label = "default");
341cb0ef41Sopenharmony_ci};
35