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