UNPKG

@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.

16 lines (14 loc) 479 B
import { GitlabPushEvent } from './gitlabPushEvent'; import { GitlabIssueEvent } from './gitlabIssueEvent'; import { GitlabPREvent } from './gitlabPREvent'; import { GitlabIssueCommentEvent } from './gitlabIssueCommentEvent'; import { GitlabPRCommentEvent } from './gitlabPRCommentEvent'; /** * All Gitlab Events supported by our API */ export type GitlabEvent = | GitlabPushEvent | GitlabIssueEvent | GitlabPREvent | GitlabIssueCommentEvent | GitlabPRCommentEvent;