Add github package

This commit is contained in:
Rachael Sewell
2019-08-03 18:37:07 -07:00
parent d8c14008f1
commit 94d538b14a
11 changed files with 256 additions and 0 deletions

36
node_modules/@actions/github/lib/interfaces.d.ts generated vendored Executable file
View File

@ -0,0 +1,36 @@
export interface PayloadRepository {
[key: string]: any;
fullName?: string;
name: string;
owner: {
[key: string]: any;
login: string;
name?: string;
};
htmlUrl?: string;
}
export interface WebhookPayload {
[key: string]: any;
repository?: PayloadRepository;
issue?: {
[key: string]: any;
number: number;
html_url?: string;
body?: string;
};
pullRequest?: {
[key: string]: any;
number: number;
htmlUrl?: string;
body?: string;
};
sender?: {
[key: string]: any;
type: string;
};
action?: string;
installation?: {
id: number;
[key: string]: any;
};
}