UNPKG

115 BTypeScriptView Raw
1export interface Executable {
2 execute(params: Object): Promise<void>;
3 validate(params: Object): boolean;
4}