@deliverr/serverless-offline-step-functions
Version:
Serverless Offline Plugin to Support Step Functions for Local Development
14 lines (13 loc) • 390 B
TypeScript
export declare class Logger {
private static INSTANCE;
private readonly logPrefix;
private isDebuggerOn;
private constructor();
static getInstance(): Logger;
turnOnDebugger(): void;
success(message: string): void;
debug(message: string): void;
log(message: string): void;
error(messageError: string): void;
warning(messageError: string): void;
}