UNPKG

546 BTypeScriptView Raw
1import { Logger } from "pino";
2import { Application } from "./application";
3import { Context, WebhookPayloadWithRepository } from "./context";
4import { Options } from "./types";
5import { Probot } from "./probot";
6import { ProbotOctokit } from "./octokit/probot-octokit";
7import { run } from "./run";
8export declare const createProbot: (options: Options) => Probot;
9export { Logger, Context, Application, ProbotOctokit, run, Probot };
10/** NOTE: exported types might change at any point in time */
11export { Options, WebhookPayloadWithRepository };