@relative-ci/agent
Version:
Send bundle stats and CI build information to RelativeCI
13 lines (12 loc) • 489 B
TypeScript
/**
* Basic logger that needs to share the same api
* with `console` and plugin loggers(eg: WebpackLogger)
*/
export declare const logger: {
debug: (message?: any, ...optionalParams: any[]) => void;
log: (message?: any, ...optionalParams: any[]) => void;
info: (message?: any, ...optionalParams: any[]) => void;
warn: (message?: any, ...optionalParams: any[]) => void;
error: (message?: any, ...optionalParams: any[]) => void;
};
export type Logger = typeof logger;