UNPKG

mailinator-client

Version:
9 lines (8 loc) 341 B
import { Inbox } from './Inbox'; import { Request } from '../Request'; import { IRestResponse } from 'typed-rest-client/RestClient'; export declare class GetLatestMessagesRequest implements Request<Inbox> { private readonly domain; constructor(domain: string); execute(apiToken: string): Promise<IRestResponse<Inbox>>; }