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.

12 lines (10 loc) 242 B
import { GitlabProject, GitlabPR, GitlabUser } from './gitlab.interface'; /** * GitlabNewPREvent dto */ export interface GitlabPREvent { object_kind: string; project: GitlabProject; object_attributes: GitlabPR; user: GitlabUser; }