UNPKG

redis-workflow

Version:

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

16 lines (12 loc) 313 B
import { Action, ActionType } from "./Action"; import IAction from "./IAction"; export default class ImmediateAction extends Action { constructor(name: string) { // valid name check in super super( name, ActionType.Immediate, ); return this; } }