We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e534a28 commit 5e3e69bCopy full SHA for 5e3e69b
types/consola.d.ts
@@ -11,6 +11,16 @@ declare class Consola {
11
static trace (message: string): void;
12
static addReporter (reporter: (message: string) => void): (typeof Consola);
13
static removeReporter (): (typeof Consola);
14
+ static withTag (tag: string): (typeof Consola);
15
+ static withScope (tag: string): (typeof Consola);
16
+ static wrapAll (): void;
17
+ static restoreAll (): void;
18
+ static wrapConsole (): void;
19
+ static restoreConsole (): void;
20
+ static wrapStd (): void;
21
+ static restoreStd (): void;
22
+ static pauseLogs (): void;
23
+ static resumeLogs (): void;
24
}
25
26
declare module "consola" {
0 commit comments