UNPKG

mailinator-client

Version:
11 lines (10 loc) 587 B
import { RequestWithoutToken } from '../RequestWithoutToken'; import { IRestResponse } from 'typed-rest-client/RestClient'; import { Webhook } from './Webhook'; import { CustomServiceWebhookResponseStatus } from './CustomServiceWebhookResponseStatus'; export declare class PublicCustomServiceWebhookRequest implements RequestWithoutToken<CustomServiceWebhookResponseStatus> { private readonly customService; private readonly webhook; constructor(customService: string, webhook: Webhook); execute(): Promise<IRestResponse<CustomServiceWebhookResponseStatus>>; }