UNPKG

emailengine-client

Version:

A TypeScript client for the EmailEngine API

10 lines (9 loc) 506 B
import { EmailEngineClient } from "../../../client"; import { GetWebhookRoutesOptions } from "./models/GetWebhooksOptions"; import { GetWebhookRouteInformationOptions } from "./models/GetWebhookRouteInformationOptions"; export declare class WebhooksApi { private axiosInstance; constructor(client: EmailEngineClient); getWebhookRoutes(options: Partial<GetWebhookRoutesOptions>): Promise<any>; getWebhookRouteInformation(options: Partial<GetWebhookRouteInformationOptions>): Promise<any>; }