UNPKG

415 BTypeScriptView Raw
1/**
2 * An interface of logger.
3 *
4 * @export
5 * @interface ILogger
6 */
7export default interface ILogger {
8 error(message: string, contextID?: string): void;
9 warn(message: string, contextID?: string): void;
10 info(message: string, contextID?: string): void;
11 verbose(message: string, contextID?: string): void;
12 debug(message: string, contextID?: string): void;
13}
14//# sourceMappingURL=ILogger.d.ts.map
\No newline at end of file