alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
20 lines (19 loc) • 463 B
TypeScript
export declare const SUCCESS: string;
export declare const ERROR: string;
export declare const WARNING: string;
export declare const INFO: string;
export declare const DEBUG: string;
export declare const ACTIVE: string;
export declare const enum LOG_LEVEL {
ERROR = 1,
WARNING = 2,
INFO = 3,
DEBUG = 4,
SUCCESS = 5
}
export declare const enum STATUS {
ERROR = "error",
WARNING = "warning",
INFO = "info",
SUCCESS = "success"
}