@kcutils/logger
Version:
Another Logger Service
13 lines • 346 B
TypeScript
/// <reference types="node" />
import { Writable } from "stream";
export interface InputOption {
label?: string;
prefix?: string;
suffix?: string;
message: string | string[];
stream?: Writable | Writable[];
appendStream?: boolean;
scopes?: string[];
timestamp?: string;
}
//# sourceMappingURL=InputOptions.d.ts.map