incubed
Version:
Typescript-version of the incubed client
10 lines (9 loc) • 400 B
TypeScript
export declare function getLogsAndClear(): {
level: string;
message: string;
data?: any[];
}[];
export declare function log(level: string, message: string, ...data: any[]): void;
export declare function info(message: string, ...data: any[]): void;
export declare function debug(message: string, ...data: any[]): void;
export declare function error(message: string, ...data: any[]): void;