UNPKG

mailinator-client

Version:
10 lines (9 loc) 404 B
import { Inbox } from './Inbox'; import { Request } from '../Request'; import { IRestResponse } from 'typed-rest-client/RestClient'; export declare class GetLatestInboxMessagesRequest implements Request<Inbox> { private readonly domain; private readonly inbox?; constructor(domain: string, inbox?: string | undefined); execute(apiToken: string): Promise<IRestResponse<Inbox>>; }