1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/frontend/src/interfaces/project.ts

28 lines
594 B
TypeScript
Raw Normal View History

import { IFeatureToggleListItem } from './featureToggle';
export interface IProjectCard {
name: string;
id: string;
createdAt: string;
health: number;
description: string;
featureCount: number;
memberCount: number;
}
export interface IProject {
members: number;
version: string;
name: string;
description: string;
environments: string[];
health: number;
features: IFeatureToggleListItem[];
}
export interface IProjectHealthReport extends IProject {
staleCount: number;
potentiallyStaleCount: number;
activeCount: number;
}