mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-27 01:19:00 +02:00
17 lines
571 B
TypeScript
17 lines
571 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { InstanceAdminStatsSchemaClientAppsItemRange } from './instanceAdminStatsSchemaClientAppsItemRange';
|
|
|
|
/**
|
|
* An entry describing how many client applications has been observed over the defined range
|
|
*/
|
|
export type InstanceAdminStatsSchemaClientAppsItem = {
|
|
/** A description of a time range */
|
|
range?: InstanceAdminStatsSchemaClientAppsItemRange;
|
|
/** The number of client applications that have been observed in this period */
|
|
count?: number;
|
|
};
|