UNPKG

mailinator-client

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