28 lines
634 B
TypeScript
28 lines
634 B
TypeScript
|
|
import { Level } from './types';
|
||
|
|
declare const _default: {
|
||
|
|
staticNamespaceLevels: boolean;
|
||
|
|
logUncaughtExceptions: boolean;
|
||
|
|
logUnhandledRejections: boolean;
|
||
|
|
stackTraceLimit: number;
|
||
|
|
skipLocalConfig: boolean;
|
||
|
|
outputs: {
|
||
|
|
console: {
|
||
|
|
outputFileAndLine: boolean;
|
||
|
|
outputLevel: boolean;
|
||
|
|
};
|
||
|
|
syslog: {
|
||
|
|
port: number;
|
||
|
|
target: string;
|
||
|
|
outputFileAndLine: boolean;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
namespaces: {
|
||
|
|
'': {
|
||
|
|
console: Level;
|
||
|
|
file: Level;
|
||
|
|
syslog: Level;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
export default _default;
|