@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
13 lines (12 loc) • 416 B
TypeScript
/// <reference types="node" />
import { LogLevel } from './LogLevel';
import { Writable } from 'stream';
export declare class LogMessage {
readonly level: LogLevel;
readonly time: Date;
readonly message: any;
readonly context?: string | undefined;
constructor(level: LogLevel, time: Date, message: any, context?: string | undefined);
write(stream: Writable): void;
toConsole(): string;
}