mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
19 lines
552 B
TypeScript
19 lines
552 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Statistics on feature flags in a given stage in this project.
|
|
*/
|
|
export type ProjectStatusSchemaLifecycleSummaryCompleted = {
|
|
/**
|
|
* The average number of days a feature flag remains in a stage in this project. Will be null if Unleash doesn't have any data for this stage yet.
|
|
* @nullable
|
|
*/
|
|
averageDays: number | null;
|
|
/** The number of feature flags currently in a stage in this project. */
|
|
currentFlags: number;
|
|
};
|