UNPKG

@barchart/common-js

Version:
23 lines (22 loc) 530 B
/** * A {@link Specification} that passes when the value of the item passed to * the constructor exceeds the value of the data item. * * @public * @extends {Specification} */ export default class LessThan extends Specification { /** * @param {number} value */ constructor(value: number); /** * @protected * @override * @param {*} data * @returns {boolean} */ protected override _evaluate(data: any): boolean; #private; } import Specification from './Specification.js';