This commit is contained in:
Sebastian Seedorf
2020-11-16 10:01:58 +01:00
parent 7fbc95f86a
commit 2629d1e8e9
55 changed files with 4904 additions and 0 deletions

13
out/logging.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import * as winston from 'winston';
import { RequestHandler } from 'express';
export declare const Logger: {
error: (...args: unknown[]) => winston.Logger;
http: (...args: unknown[]) => winston.Logger;
info: (...args: unknown[]) => winston.Logger;
silly: (...args: unknown[]) => winston.Logger;
warn: (...args: unknown[]) => winston.Logger;
verbose: (...args: unknown[]) => winston.Logger;
debug: (...args: unknown[]) => winston.Logger;
log: (...args: unknown[]) => winston.Logger;
};
export declare const HttpLogger: RequestHandler;