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) 257 B
import { GithubCommit, GithubRepository, GithubSender, } from './github.interface'; /** * GithubPushEvent dto */ export interface GithubPushEvent { commits: GithubCommit[]; repository: GithubRepository; ref: string; sender: GithubSender; }