@intuitionrobotics/testelot
Version:
Nu-Art Sir Testelot
12 lines (11 loc) • 345 B
TypeScript
/**
* Created by IR on 3/18/17.
*/
import { Action } from "./Action";
import { LogLevel } from "@intuitionrobotics/ts-common";
export declare class Action_Log extends Action {
private readonly logMessage;
private readonly level;
protected constructor(logMessage: string, level: LogLevel);
protected execute(): Promise<void>;
}