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