-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.d.ts
More file actions
20 lines (20 loc) · 1 KB
/
index.d.ts
File metadata and controls
20 lines (20 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export default Log;
export type Level = import("./utils.js").Level;
export type LogOptions = import("./node.js").LogOptions & {
Log: typeof Log;
};
export type LogOptionWrapConsole = import("./node.js").LogOptionWrapConsole;
export type LogOptionHandleExitEvents = import("./node.js").LogOptionHandleExitEvents;
export type LogOptionsEcs = import("./ecs/LogEcs.js").LogOptionsEcs;
export type MwLogOption = import("./browserLogs.js").MwLogOption;
export type LogOptionsHttpLog = import("./httpLogs.js").LogOptionsHttpLog;
export type IncomingMessageWithId = import("./httpLogs.js").IncomingMessageWithId;
import { Log } from './node.js';
import { LogEcs } from './ecs/LogEcs.js';
import { logger } from './logger.js';
import { ProcLog } from './ProcLog.js';
import { initProcLog } from './ProcLog.js';
import { EVENT_NAME } from './ProcLog.js';
import { browserLogs } from './browserLogs.js';
import { httpLogs } from './httpLogs.js';
export { Log, LogEcs, logger, ProcLog, initProcLog, EVENT_NAME, browserLogs, httpLogs };