mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
|
import { FromSchema } from 'json-schema-to-ts';
|
||
|
|
||
|
export const dependenciesExistSchema = {
|
||
|
$id: '#/components/schemas/dependenciesExistSchema',
|
||
|
type: 'boolean',
|
||
|
description:
|
||
|
'`true` when any dependencies exist, `false` when no dependencies exist.',
|
||
|
components: {},
|
||
|
} as const;
|
||
|
|
||
|
export type DependenciesExistSchema = FromSchema<
|
||
|
typeof dependenciesExistSchema
|
||
|
>;
|