UNPKG

aono-file-handler

Version:

Aono handler that write to a log file with support for custom formatters and log rotation.

9 lines (8 loc) 178 B
import { Entry } from 'aono'; /** * @author Maciej Chałapuk (maciej@chalapuk.pl) */ export interface Formatter { format(entry: Entry): string; } export default Formatter;