@octokit/webhooks
Version:
GitHub webhook events toolset for Node.js
19 lines (18 loc) • 1.4 kB
TypeScript
import { createEventHandler } from "./event-handler/index";
import { EmitterWebhookEvent, EmitterWebhookEventName, HandlerFunction, RemoveHandlerFunction, Options, WebhookError, WebhookEventHandlerError, EmitterWebhookEventWithStringPayloadAndSignature, EmitterWebhookEventWithSignature } from "./types";
export { createNodeMiddleware } from "./middleware/node/index";
export { emitterEventNames } from "./generated/webhook-names";
declare class Webhooks<TTransformed = unknown> {
sign: (payload: string | object) => Promise<string>;
verify: (eventPayload: string | object, signature: string) => Promise<boolean>;
on: <E extends EmitterWebhookEventName>(event: E | E[], callback: HandlerFunction<E, TTransformed>) => void;
onAny: (callback: (event: EmitterWebhookEvent) => any) => void;
onError: (callback: (event: WebhookEventHandlerError) => any) => void;
removeListener: <E extends EmitterWebhookEventName | "*">(event: E | E[], callback: RemoveHandlerFunction<E, TTransformed>) => void;
receive: (event: EmitterWebhookEvent) => Promise<void>;
verifyAndReceive: (options: EmitterWebhookEventWithStringPayloadAndSignature | EmitterWebhookEventWithSignature) => Promise<void>;
constructor(options: Options<TTransformed> & {
secret: string;
});
}
export { createEventHandler, Webhooks, EmitterWebhookEvent, EmitterWebhookEventName, WebhookError, };