mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
updated Orval and configured it to be compatible with v7. --------- Co-authored-by: Thomas Heartman <thomas@getunleash.io>
17 lines
370 B
TypeScript
17 lines
370 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { FeatureLinkSchema } from './featureLinkSchema.js';
|
|
|
|
/**
|
|
* A list of links for a feature
|
|
*/
|
|
export interface FeatureLinksSchema {
|
|
/** The name of the child feature. */
|
|
feature: string;
|
|
/** List of feature links */
|
|
links: FeatureLinkSchema[];
|
|
}
|