UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

11 lines (10 loc) 296 B
import type { Logger } from "pino"; export declare const createWebhookProxy: (opts: WebhookProxyOptions) => Promise<EventSource | undefined>; export interface WebhookProxyOptions { url: string; port: number; path: string; host: string; logger: Logger; fetch?: Function; }