mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
20 lines
509 B
TypeScript
20 lines
509 B
TypeScript
|
import { variantSchema } from './variant-schema';
|
||
|
import { FromSchema } from 'json-schema-to-ts';
|
||
|
import { overrideSchema } from './override-schema';
|
||
|
|
||
|
export const variantsSchema = {
|
||
|
$id: '#/components/schemas/variantsSchema',
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
$ref: '#/components/schemas/variantSchema',
|
||
|
},
|
||
|
components: {
|
||
|
schemas: {
|
||
|
variantSchema,
|
||
|
overrideSchema,
|
||
|
},
|
||
|
},
|
||
|
} as const;
|
||
|
|
||
|
export type VariantsSchema = FromSchema<typeof variantsSchema>;
|