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.

14 lines (12 loc) 283 B
import { GithubRepository, GithubSender } from './github.interface'; /** * GithubBranchEvent dto */ export interface GithubBranchEvent { ref_type: string; ref: string; master_branch?: string; description?: string; repository: GithubRepository; sender: GithubSender; }