UNPKG

304 BTypeScriptView Raw
1import * as probot from 'probot';
2export interface Logger {
3 log(msg: string): void;
4 info(msg: string): void;
5 warn(msg: string): void;
6 error(msg: string | Error, error?: Error): void;
7}
8export declare function createLogger(label: string, context: probot.Context, release: string): Logger;