UNPKG

@kevin-infra/core

Version:

Core library for managing configuration and data in your application, for multiple environments.

11 lines (10 loc) 236 B
export interface IEnvironmentMetaData { name: string; id: string; parentEnvironmentId: string; } export interface IEnvironmentInformation { name: string; id: string; parentEnvironment: IEnvironmentInformation; }