import type { ArrayOptions } from './array.js'; import type { BigIntegerOptions } from './big-integer.js'; import type { BooleanOptions } from './boolean.js'; import type { DateOptions } from './date.js'; import type { IntegerOptions } from './integer.js'; import type { NumberOptions } from './number.js'; import type { ObjectOptions } from './object.js'; import type { StringOptions } from './string.js'; export type __PropertyOptions = StringOptions | NumberOptions | IntegerOptions | BigIntegerOptions | BooleanOptions | ObjectOptions | DateOptions | ArrayOptions; export type PropertyOptions = Readonly<__PropertyOptions<__PropertyOptions<__PropertyOptions>>>; //# sourceMappingURL=property.d.ts.map