UNPKG

@barchart/common-js

Version:
18 lines (17 loc) 393 B
/** * A {@link Specification} that passes when the type of the data item * is a number. * * @public * @extends {Specification} */ export default class Numeric extends Specification { /** * @protected * @override * @param {*} data * @returns {boolean} */ protected override _evaluate(data: any): boolean; } import Specification from './Specification.js';