UNPKG

mailinator-client

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