mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-17 13:46:47 +02:00
17 lines
516 B
TypeScript
17 lines
516 B
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
|
|
|
|
export const parentVariantOptionsSchema = {
|
|
$id: '#/components/schemas/parentVariantOptionsSchema',
|
|
type: 'array',
|
|
description:
|
|
'A list of parent variant names available for a given parent feature. This list includes strategy variants and feature environment variants.',
|
|
items: {
|
|
type: 'string',
|
|
},
|
|
components: {},
|
|
} as const;
|
|
|
|
export type ParentVariantOptionsSchema = FromSchema<
|
|
typeof parentVariantOptionsSchema
|
|
>;
|