@highcharts/dashboards
Version:
Highcharts Dashboards framework
21 lines (20 loc) • 582 B
TypeScript
import type { Arguments } from '../FormulaTypes';
import type DataTable from '../../DataTable';
/**
* Processor for the `AND(...tests)` implementation. Returns `TRUE`, if all test
* results are not `0` or `FALSE`.
*
* @private
* @function Formula.processorFunctions.AND
*
* @param {Highcharts.FormulaArguments} args
* Arguments to process.
*
* @param {Highcharts.DataTable} [table]
* Table to use for references and ranges.
*
* @return {boolean}
* Result value of the process.
*/
declare function AND(args: Arguments, table?: DataTable): boolean;
export default AND;