UNPKG

mailinator-client

Version:
10 lines (9 loc) 406 B
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>>; }