mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-24 20:06:55 +01:00
20 lines
513 B
TypeScript
20 lines
513 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The aggregation mode for the metric data.
|
|
*/
|
|
export type ImpactMetricsConfigSchemaAggregationMode =
|
|
(typeof ImpactMetricsConfigSchemaAggregationMode)[keyof typeof ImpactMetricsConfigSchemaAggregationMode];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const ImpactMetricsConfigSchemaAggregationMode = {
|
|
rps: 'rps',
|
|
count: 'count',
|
|
avg: 'avg',
|
|
sum: 'sum',
|
|
} as const;
|