UNPKG

@devgrid/netron

Version:

A powerful TypeScript library for building distributed systems with event bus, streaming capabilities, and remote object invocation. Features WebSocket-based bidirectional communication between Node.js and browser environments, service discovery, and type

9 lines (8 loc) 343 B
import { Logger, LoggerOptions, DestinationStream } from 'pino'; declare class LoggerFactory { private static rootLogger; static getLogger(context?: Record<string, any>): Logger; static initLogger(options?: LoggerOptions, destination?: DestinationStream): void; } export declare const logger: Logger; export default LoggerFactory;