mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-16 00:06:40 +01:00
22 lines
955 B
TypeScript
22 lines
955 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { PlaygroundFeatureSchemaStrategiesResult } from './playgroundFeatureSchemaStrategiesResult';
|
|
import type { PlaygroundStrategySchema } from './playgroundStrategySchema';
|
|
|
|
/**
|
|
* The feature's applicable strategies and cumulative results of the strategies
|
|
*/
|
|
export type PlaygroundFeatureSchemaStrategies = {
|
|
/** 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: PlaygroundFeatureSchemaStrategiesResult;
|
|
/** The strategies that apply to this feature. */
|
|
data: PlaygroundStrategySchema[];
|
|
};
|