@dxdeveloperexperience/hygie
Version:
Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.
18 lines (16 loc) • 558 B
text/typescript
import { GithubPushEvent } from './githubPushEvent';
import { GithubBranchEvent } from './githubBranchEvent';
import { GithubIssueEvent } from './githubIssueEvent';
import { GithubNewRepoEvent } from './githubNewRepoEvent';
import { GithubPREvent } from './githubPREvent';
import { GithubIssuePRCommentEvent } from './githubIssuePRCommentEvent';
/**
* All Github Events supported by our API
*/
export type GithubEvent =
| GithubPushEvent
| GithubBranchEvent
| GithubIssueEvent
| GithubNewRepoEvent
| GithubPREvent
| GithubIssuePRCommentEvent;