UNPKG

redis-workflow

Version:

Simple Promise based multi-channel workflow rules engine using Redis backing

10 lines (9 loc) 269 B
import { ActionType } from "./Action"; export default interface IAction { getContext(): Dictionary; setContext(context: Dictionary): void; getName(): string; setName(name: string): void; getType(): ActionType; setType(type: ActionType): void; }