UNPKG

log4ts

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