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