1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-13 11:17:26 +02:00
unleash.unleash/frontend/src/openapi/models/featureLinksSchema.ts
Tymoteusz Czech 553ffc62b7
fix: orval for ESM (#10086)
updated Orval and configured it to be compatible with v7.

---------

Co-authored-by: Thomas Heartman <thomas@getunleash.io>
2025-06-05 10:40:58 +00:00

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[];
}