diff --git a/types/consola.d.ts b/types/consola.d.ts index 06ca2795..5327e842 100644 --- a/types/consola.d.ts +++ b/types/consola.d.ts @@ -11,6 +11,16 @@ declare class Consola { static trace (message: string): void; static addReporter (reporter: (message: string) => void): (typeof Consola); static removeReporter (): (typeof Consola); + static withTag (tag: string): (typeof Consola); + static withScope (tag: string): (typeof Consola); + static wrapAll (): void; + static restoreAll (): void; + static wrapConsole (): void; + static restoreConsole (): void; + static wrapStd (): void; + static restoreStd (): void; + static pauseLogs (): void; + static resumeLogs (): void; } declare module "consola" {