@barchart/common-js
Version:
Library of common JavaScript utilities
19 lines (18 loc) • 446 B
TypeScript
/**
* A {@link Specification} that passes when the value of the item passed to
* the constructor is neither null nor undefined.
*
* @public
* @extends {Specification}
*/
export default class Exists extends Specification {
/**
* @protected
* @override
* @param {*} data
* @returns {boolean}
*/
protected override _evaluate(data: any): boolean;
#private;
}
import Specification from './Specification.js';