UNPKG

@allseated-registry/mailinator-client

Version:
13 lines (12 loc) 338 B
import { Action } from "./Action"; import { Condition } from "./Condition"; import { MatchType } from "./MatchType"; export declare class RuleToCreate { description: string; enabled: boolean; match: MatchType; name: string; priority: number; conditions: Array<Condition>; actions: Array<Action>; }