UNPKG

283 BTypeScriptView Raw
1import { Webhooks } from "../../index";
2import { MiddlewareOptions } from "./types";
3export declare function createNodeMiddleware(webhooks: Webhooks, { path, onUnhandledRequest, log, }?: MiddlewareOptions): (request: any, response: any, next?: Function | undefined) => Promise<any>;