UNPKG

mailinator-client

Version:
11 lines (10 loc) 456 B
import { Request } from '../Request'; import { IRestResponse } from 'typed-rest-client/RestClient'; import { Rule } from "./Rule"; /** @deprecated This endpoint is deprecated and will be removed in a future release. */ export declare class GetRuleRequest implements Request<Rule> { private readonly domainId; private readonly ruleId; constructor(domainId: string, ruleId: string); execute(apiToken: string): Promise<IRestResponse<Rule>>; }