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.

17 lines (15 loc) 290 B
import { GithubRepository, GithubPullRequest, GithubSender, } from './github.interface'; /** * GithubNewPREvent dto */ export interface GithubPREvent { action: string; pull_request: GithubPullRequest; repository: GithubRepository; number: number; sender: GithubSender; }