UNPKG

449 BTypeScriptView Raw
1import * as probot from 'probot';
2export interface Config {
3 diff?: boolean;
4 schema: SchemaPointer;
5}
6export interface SchemaPointer {
7 ref: string;
8 path: string;
9}
10export default function handleProbot(app: probot.Application): void;
11export declare function handleAction({ context, owner, repo, ref, action, }: {
12 context: probot.Context;
13 owner: string;
14 repo: string;
15 ref: string;
16 action: string;
17}): Promise<void>;