1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-18 01:18:23 +02:00
unleash.unleash/frontend/src/openapi/models/projectInsightsSchemaMembers.ts

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;
};