mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-27 01:19:00 +02:00
22 lines
1.0 KiB
TypeScript
22 lines
1.0 KiB
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { AdvancedPlaygroundEnvironmentFeatureSchemaStrategiesResult } from './advancedPlaygroundEnvironmentFeatureSchemaStrategiesResult';
|
|
import type { PlaygroundStrategySchema } from './playgroundStrategySchema';
|
|
|
|
/**
|
|
* Feature's applicable strategies and cumulative results of the strategies
|
|
*/
|
|
export type AdvancedPlaygroundEnvironmentFeatureSchemaStrategies = {
|
|
/** The cumulative results of all the feature's strategies. Can be `true`,
|
|
`false`, or `unknown`.
|
|
This property will only be `unknown`
|
|
if one or more of the strategies can't be fully evaluated and the rest of the strategies
|
|
all resolve to `false`. */
|
|
result: AdvancedPlaygroundEnvironmentFeatureSchemaStrategiesResult;
|
|
/** The strategies that apply to this feature. */
|
|
data: PlaygroundStrategySchema[];
|
|
};
|