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.

13 lines (11 loc) 273 B
import { GitlabIssue, GitlabProject, GitlabUser } from './gitlab.interface'; /** * GitlabIssueEvent dto */ export interface GitlabIssueEvent { object_kind: string; event_type: string; object_attributes: GitlabIssue; project: GitlabProject; user: GitlabUser; }