UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

13 lines (12 loc) 222 B
/** * Virtual console log level. * * @see https://console.spec.whatwg.org/#loglevel-severity */ enum VirtualConsoleLogLevelEnum { log = 0, info = 1, warn = 2, error = 3 } export default VirtualConsoleLogLevelEnum;