UNPKG

mailinator-client

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