34 lines
603 B
TypeScript
34 lines
603 B
TypeScript
import {
|
|
ConsoleConfig,
|
|
FileConfig,
|
|
OutputHandler,
|
|
SyslogConfig,
|
|
} from './lib/dts/output-handlers';
|
|
import {
|
|
Level,
|
|
LevelPerOutput,
|
|
LoggingConfig,
|
|
Output,
|
|
OutputPerNamespace,
|
|
OutputsConfig,
|
|
} from './lib/dts/types';
|
|
import {Log as LogImport} from './lib/dts';
|
|
import LogOutputs from './lib/dts/LogOutputs';
|
|
|
|
declare class Log extends LogImport {}
|
|
|
|
export {
|
|
ConsoleConfig,
|
|
FileConfig,
|
|
Level,
|
|
LevelPerOutput,
|
|
Log,
|
|
LoggingConfig,
|
|
LogOutputs,
|
|
Output,
|
|
OutputHandler,
|
|
OutputPerNamespace,
|
|
OutputsConfig,
|
|
SyslogConfig,
|
|
};
|