mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
10 lines (9 loc) • 416 B
TypeScript
import { Request } from '../Request';
import { IRestResponse } from 'typed-rest-client/RestClient';
import { Rules } from "./Rules";
/** @deprecated This endpoint is deprecated and will be removed in a future release. */
export declare class GetRulesRequest implements Request<Rules> {
private readonly domainId;
constructor(domainId: string);
execute(apiToken: string): Promise<IRestResponse<Rules>>;
}