UNPKG

probot

Version:

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

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