UNPKG

484 BTypeScriptView Raw
1import { ActionBase } from './action/base';
2export declare type Levels = 'fatal' | 'error' | 'warn' | 'info' | 'debug' | 'trace';
3export interface ConfigMessage {
4 type: 'config';
5 prop: string;
6 value: any;
7}
8export declare class Config {
9 outputLevel: Levels;
10 action: ActionBase;
11 prideAction: ActionBase;
12 errorsHandled: boolean;
13 showStackTrace: boolean;
14 debug: boolean;
15 context: any;
16}
17export declare const config: Config;
18export default config;