@intuitionrobotics/testelot
Version:
Nu-Art Sir Testelot
10 lines (9 loc) • 384 B
TypeScript
/**
* Created by IR on 3/18/17.
*/
import { Action } from "./Action";
export declare class Action_Custom<ParamValue = any, ReturnValue = any> extends Action<ParamValue, ReturnValue> {
private readonly action;
protected constructor(action: (action: Action_Custom, param: ParamValue) => Promise<ReturnValue>);
protected execute(param: ParamValue): Promise<ReturnValue>;
}