UNPKG

@allseated-registry/mailinator-client

Version:
11 lines (10 loc) 438 B
import { Request } from '../Request'; import { Message } from './Message'; import { IRestResponse } from 'typed-rest-client/RestClient'; export declare class GetMessageRequest implements Request<Message> { private readonly domain; private readonly inbox; private readonly messageId; constructor(domain: string, inbox: string, messageId: string); execute(apiToken: string): Promise<IRestResponse<Message>>; }