mailinator-client
Version:
Mailinator REST API client for JavaScript applications.
10 lines (9 loc) • 470 B
TypeScript
import { Inbox } from './Inbox';
import { Request } from '../Request';
import { IRestResponse } from 'typed-rest-client/RestClient';
/** @deprecated This endpoint is not in the OpenAPI spec and currently returns server errors. It will be removed in a future release. */
export declare class GetLatestMessagesRequest implements Request<Inbox> {
private readonly domain;
constructor(domain: string);
execute(apiToken: string): Promise<IRestResponse<Inbox>>;
}