@plugjs/plug
Version:
PlugJS Build System ===================
14 lines (13 loc) • 571 B
TypeScript
import type { Log } from './logging/logger';
export * from './logging/colors';
export * from './logging/github';
export * from './logging/levels';
export * from './logging/logger';
export * from './logging/options';
export * from './logging/report';
/** The generic, shared `log` function type. */
export type LogFunction = ((...args: [any, ...any]) => void) & Log;
/** Our logging function (defaulting to the `NOTICE` level) */
export declare const log: LogFunction;
/** Print a nice _banner_ message on the log */
export declare function banner(message: string): void;