UNPKG

mailinator-client

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