import { Predicate } from './Predicate.js'; /** * @desc Ensures that the `property` of the `value` meets the `predicates` * * @example * import { ensure, isGreaterThan, property, TinyType } from 'tiny-types'; * * class Name extends TinyType { * constructor(public readonly value: string) { * super(); * ensure('Name', value, property('length', isGreaterThan(3))); * } * } * * @returns {Predicate} */ export declare function property(propertyName: K, ...predicates: Array>): Predicate; //# sourceMappingURL=property.d.ts.map