mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
9 lines (8 loc) • 384 B
TypeScript
import { Request } from '../Request';
import { DeletedMessages } from './DeletedMessages';
import { IRestResponse } from 'typed-rest-client/RestClient';
export declare class DeleteDomainMessagesRequest implements Request<DeletedMessages> {
private readonly domain;
constructor(domain: string);
execute(apiToken: string): Promise<IRestResponse<DeletedMessages>>;
}