@robotical/sensors-dashboard
Version:
A dashboard tool for depicting Marty data by Robotical
8 lines (7 loc) • 342 B
TypeScript
declare class Logger {
static info(SHOW_LOGS: boolean, tag: string, message: string): void;
static error(SHOW_LOGS: boolean, tag: string, message: string): void;
static debug(SHOW_LOGS: boolean, tag: string, message: string): void;
static warn(SHOW_LOGS: boolean, tag: string, message: string): void;
}
export default Logger;