import { type VALUE_TYPES } from './data'; export type Nullish = null | undefined; export type ValueType = keyof typeof VALUE_TYPES; export type InstanceClone = ((value: T) => T) | boolean; export type IndividualEqualityType = null | undefined | boolean | number | string | Date | object | Function; export type EqualityType = IndividualEqualityType | IndividualEqualityType[]; //# sourceMappingURL=types.d.ts.map