File tree Expand file tree Collapse file tree 2 files changed +15
-14
lines changed
Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 11import { Probot } from "probot" ;
22import { EmitterWebhookEvent } from "@octokit/webhooks" ;
3-
4- interface InstallationLite {
5- id : number ;
6- node_id : string ;
7- }
8- interface GitHubAppWebHookPayload {
9- installation : InstallationLite ;
10- repository : {
11- name : string ;
12- owner : {
13- login : string ;
14- }
15- }
16- }
3+ import { GitHubAppWebHookPayload } from "./types" ;
174
185// import * as fs from 'fs';
196// import * as yaml from 'yaml';
Original file line number Diff line number Diff line change 1+ interface InstallationLite {
2+ id : number ;
3+ node_id : string ;
4+ }
5+
6+ export interface GitHubAppWebHookPayload {
7+ installation : InstallationLite ;
8+ repository : {
9+ name : string ;
10+ owner : {
11+ login : string ;
12+ }
13+ }
14+ }
You can’t perform that action at this time.
0 commit comments