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.
30 lines (26 loc) • 471 B
text/typescript
/**
* Virtual console log type.
*/
enum VirtualConsoleLogTypeEnum {
// Log
log = 'log',
table = 'table',
trace = 'trace',
dir = 'dir',
dirxml = 'dirxml',
group = 'group',
groupCollapsed = 'groupCollapsed',
debug = 'debug',
timeLog = 'timeLog',
// Info
info = 'info',
count = 'count',
timeEnd = 'timeEnd',
// Warning
warn = 'warn',
countReset = 'countReset',
// Error
error = 'error',
assert = 'assert'
}
export default VirtualConsoleLogTypeEnum;