mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
15 lines
418 B
TypeScript
15 lines
418 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type FeatureSchemaDependenciesItem = {
|
|
/** Whether the parent feature is enabled or not */
|
|
enabled?: boolean;
|
|
/** The name of the parent feature */
|
|
feature: string;
|
|
/** The list of variants the parent feature should resolve to. Only valid when feature is enabled. */
|
|
variants?: string[];
|
|
};
|