tiny-types
Version:
A tiny library that brings Tiny Types to JavaScript and TypeScript
18 lines (17 loc) • 548 B
TypeScript
import { Predicate } from './Predicate';
/**
* @desc Ensures that the `value` is greater than or equal to the `lowerBound`.
*
* @example
* import { ensure, isGreaterThanOrEqualTo, TinyType } from 'tiny-types';
*
* class AgeInYears extends TinyType {
* constructor(public readonly value: number) {
* ensure('Age in years', value, isGreaterThanOrEqualTo(18));
* }
* }
*
* @param {number} lowerBound
* @returns {Predicate<number>}
*/
export declare function isGreaterThanOrEqualTo(lowerBound: number): Predicate<number>;