UNPKG

mailinator-client

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