File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
declare class Consola {
2
- static fatal ( message : string ) : void ;
3
- static error ( message : string ) : void ;
4
- static warn ( message : string ) : void ;
5
- static log ( message : string ) : void ;
6
- static info ( message : string ) : void ;
7
- static start ( message : string ) : void ;
8
- static success ( message : string ) : void ;
9
- static ready ( message : string ) : void ;
10
- static debug ( message : string ) : void ;
11
- static trace ( message : string ) : void ;
2
+ static fatal ( message : any ) : void ;
3
+ static error ( message : any ) : void ;
4
+ static warn ( message : any ) : void ;
5
+ static log ( message : any ) : void ;
6
+ static info ( message : any ) : void ;
7
+ static start ( message : any ) : void ;
8
+ static success ( message : any ) : void ;
9
+ static ready ( message : any ) : void ;
10
+ static debug ( message : any ) : void ;
11
+ static trace ( message : any ) : void ;
12
12
static addReporter ( reporter : ( message : string ) => void ) : ( typeof Consola ) ;
13
13
static removeReporter ( ) : ( typeof Consola ) ;
14
14
static withTag ( tag : string ) : ( typeof Consola ) ;
You can’t perform that action at this time.
0 commit comments