node-test-bed-adapter
Version:
An adapter to connect a node.js application to the Test-bed's Common Information Space or Common Simulation Space.
10 lines (9 loc) • 310 B
text/typescript
import { ICanLog, LogLevel } from './index.mjs';
/**
* Console logger.
*
* Color codes are taken from [here](https://stackoverflow.com/a/41407246/319711).
*/
export declare class ConsoleLogger implements ICanLog {
log(level: LogLevel, msg: string, _callback?: (err: any, result: any) => void): void;
}