mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-18 01:18:23 +02:00

16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Active/inactive users summary
|
|
*/
|
|
export type ProjectInsightsSchemaMembers = {
|
|
/** The change in the number of project members compared to the previous month */
|
|
change: number;
|
|
/** The number of total project members */
|
|
currentMembers: number;
|
|
};
|