probot
Version:
A framework for building GitHub Apps to automate and improve your workflow
11 lines (10 loc) • 341 B
TypeScript
import type { Logger } from "pino";
import type { ProbotOctokit } from "./probot-octokit.js";
import type { ProbotWebhooks } from "../types.js";
type GetWebhooksOptions = {
log: Logger;
octokit: ProbotOctokit;
webhookSecret: string;
};
export declare function getWebhooks(options: GetWebhooksOptions): ProbotWebhooks;
export {};