UNPKG

log4ts

Version:
8 lines (7 loc) 173 B
import { LogEntry } from "./LogEntry"; export interface ILayout { format(entry: LogEntry): string; } export interface ILayoutFunction { (entry: LogEntry): string; }