UNPKG

mailinator-client

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