mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
17 lines
465 B
TypeScript
17 lines
465 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { DependentFeatureSchema } from './dependentFeatureSchema';
|
|
|
|
/**
|
|
* Feature dependency connection between a child feature and its dependencies
|
|
*/
|
|
export interface FeatureDependenciesSchema {
|
|
/** List of parent features for the child feature */
|
|
dependencies: DependentFeatureSchema[];
|
|
/** The name of the child feature. */
|
|
feature: string;
|
|
}
|