@liberation-data/drivine
Version:
Best and fastest graph database client for TypeScript / Node.js. Provides a level of abstraction for building highly scalable applications, without compromising architectural integrity
16 lines (15 loc) • 424 B
TypeScript
import { Format } from 'cli-color';
export declare class LogLevel {
readonly key: string;
readonly value: number;
readonly consoleString: string;
readonly color: Format;
static VERBOSE: LogLevel;
static DEBUG: LogLevel;
static INFO: LogLevel;
static WARN: LogLevel;
static ERROR: LogLevel;
static NONE: LogLevel;
static from(name?: string): LogLevel;
private constructor();
}