UNPKG

redis-workflow

Version:

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

11 lines (10 loc) 319 B
import IRule from "./IRule"; export default class Rule implements IRule { protected name: string; protected expression: string; constructor(name: string, expression: string); getName(): string; setName(name: string): void; getExpression(): string; setExpression(expression: string): void; }