import type { SpecificType } from "../../../types/SpecificType"; export type RequiredSingle = SpecificType; export type RequiredUnion = { type: SpecificType; optionalTypes: SpecificType[]; }; export type RequiredType = RequiredUnion | RequiredSingle; export type OptionalType = { type: SpecificType; value: Literal; optionalTypes?: SpecificType[]; }; export type PropertiesTypes = OptionalType | RequiredType; export type PropertiesConstraint = Record>;