@robotlegsjs/core
Version:
An architecture-based IoC framework for JavaScript/TypeScript
14 lines (13 loc) • 341 B
TypeScript
import { ICommand } from "../api/ICommand";
/**
* Abstract command implementation
*
* <p>Please note: you do not have to extend this class.
* Any class with an execute method can be used.</p>
*/
export declare abstract class Command implements ICommand {
/**
* @inheritDoc
*/
abstract execute(...args: any[]): void;
}