UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

6 lines (4 loc) 161 B
import type { LogEntry } from "../schemas/logEntrySchema.ts"; export abstract class LogFormatterProvider { public abstract format(entry: LogEntry): string; }