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 (10 loc) 245 B
export interface KeyValueEnvFileInterface { [key: string]: string; } export interface ProjectEnvFileInterface { name: string; envs: KeyValueEnvFileInterface; } export interface EnvFileInterface { projects: ProjectEnvFileInterface[]; }