UNPKG

328 BTypeScriptView Raw
1type IncomingMessage = any;
2type ServerResponse = any;
3import { Webhooks } from "../../index";
4import { MiddlewareOptions } from "./types";
5export declare function middleware(webhooks: Webhooks, options: Required<MiddlewareOptions>, request: IncomingMessage, response: ServerResponse, next?: Function): Promise<any>;
6export {};