alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
10 lines (9 loc) • 333 B
TypeScript
export declare class Logger {
static log(...message: any[]): void;
static error(...message: any[]): Error;
static warn(...message: any[]): void;
static info(...message: any[]): void;
static debug(...message: any[]): void;
static success(...message: any[]): void;
static throw(...message: any[]): Error;
}