Files
2026-02-10 01:14:19 +00:00

11 lines
325 B
TypeScript

import { Options } from "./options";
import { Chalk } from "chalk";
export type LoggerFunc = (message: string) => void;
export interface Logger {
log: LoggerFunc;
logInfo: LoggerFunc;
logWarning: LoggerFunc;
logError: LoggerFunc;
}
export declare function makeLogger(options: Options, colors: Chalk): Logger;