import type { Validators } from "../../../types/Validators"; import type { PropertiesConstraint } from "./PropertiesConstraint"; import type { PropertiesValueValidator } from "./PropertiesValueValidator"; export type PropertiesOption = { properties?: TProperties & Validators<[ PropertiesValueValidator ]>; };