UNPKG

lib-utils-ts

Version:

<img src="https://img.shields.io/npm/v/lib-utils-ts"/> <img src="https://img.shields.io/snyk/vulnerabilities/npm/lib-utils-ts"/> <img src="https://img.shields.io/npm/l/lib-utils-ts"/> <img src="https://img.shields.io/github/languages/top/devGnode/lib-util

16 lines 524 B
import {Enum} from "../Enum"; /*** * https://github.com/devGnode/logger20js * @writer maroder * @version 1.0-R-JSTrip */ export class LogLevel extends Enum{ @Enum.args() static readonly ALL:LogLevel; @Enum.args() static readonly LOG:LogLevel; @Enum.args() static readonly DEBUG:LogLevel; @Enum.args() static readonly ERROR:LogLevel; @Enum.args() static readonly INFO:LogLevel; @Enum.args() static readonly CUSTOM:LogLevel; @Enum.args() static readonly WARN:LogLevel; } Object.package(this);