@barchart/common-js
Version:
Library of common JavaScript utilities
18 lines (17 loc) • 434 B
TypeScript
/**
* A {@link Specification} that passes when the first item in an
* array is greater than the second item in the array.
*
* @public
* @extends {Specification}
*/
export default class GreaterThan extends Specification {
/**
* @protected
* @override
* @param {*} data
* @returns {boolean}
*/
protected override _evaluate(data: any): boolean;
}
import Specification from './../Specification.js';