mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
11 lines (10 loc) • 438 B
TypeScript
import { Request } from '../Request';
import { Message } from './Message';
import { IRestResponse } from 'typed-rest-client/RestClient';
export declare class GetMessageRequest implements Request<Message> {
private readonly domain;
private readonly messageId;
private readonly del?;
constructor(domain: string, messageId: string, del?: string | undefined);
execute(apiToken: string): Promise<IRestResponse<Message>>;
}