UNPKG

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