waha / src /apps /app_sdk /ILogger.ts
NitinBot002's picture
Upload 384 files
4327358 verified
export interface ILogger {
fatal(log: string): void;
error(log: string): void;
warn(log: string): void;
info(log: string): void;
debug(log: string): void;
trace(log: string): void;
}