UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

11 lines (8 loc) 325 B
import { SvixRequestContext } from "../request"; import { OperationalWebhookEndpoint } from "./operationalWebhookEndpoint"; export class OperationalWebhook { public constructor(private readonly requestCtx: SvixRequestContext) {} public get endpoint() { return new OperationalWebhookEndpoint(this.requestCtx); } }