UNPKG

@deepkush97/logger-ts

Version:

A simple logger implementation with typescript containing two transport method for logging.

5 lines (4 loc) 131 B
import { LogLevels } from "../utils/LogLevels"; export interface Transport { log: (level: LogLevels, data: any) => void; }