• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into reffy-reports
3// (https://github.com/tidoust/reffy-reports)
4// Source: Console Standard (https://console.spec.whatwg.org/)
5
6[Exposed=(Window,Worker,Worklet)]
7namespace console { // but see namespace object requirements below
8  // Logging
9  void assert(optional boolean condition = false, any... data);
10  void clear();
11  void debug(any... data);
12  void error(any... data);
13  void info(any... data);
14  void log(any... data);
15  void table(optional any tabularData, optional sequence<DOMString> properties);
16  void trace(any... data);
17  void warn(any... data);
18  void dir(optional any item, optional object? options);
19  void dirxml(any... data);
20
21  // Counting
22  void count(optional DOMString label = "default");
23  void countReset(optional DOMString label = "default");
24
25  // Grouping
26  void group(any... data);
27  void groupCollapsed(any... data);
28  void groupEnd();
29
30  // Timing
31  void time(optional DOMString label = "default");
32  void timeLog(optional DOMString label = "default", any... data);
33  void timeEnd(optional DOMString label = "default");
34};
35