UNPKG

mailinator-client

Version:
13 lines (12 loc) 325 B
import { MatchType } from './MatchType'; import { Condition } from './Condition'; import { Action } from './Action'; export declare class Rule { _id: string; description: string; enabled: boolean; match: MatchType; name: string; conditions: Array<Condition>; actions: Array<Action>; }