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.

10 lines (9 loc) 216 B
/** * Provide all informations needed to interact with a File (get, delete) via a git API */ export class GitFileInfos { filePath: string; fileBranch: string; // In case of removal commitMessage: string; }