UNPKG

hyperformula-dc

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

25 lines (24 loc) 839 B
/** * @license * Copyright (c) 2021 Handsoncode. All rights reserved. */ import { ProcedureAst } from '../../parser'; import { InterpreterState } from '../InterpreterState'; import { InterpreterValue } from '../InterpreterValue'; import { ArgumentTypes, FunctionPlugin, FunctionPluginTypecheck } from './FunctionPlugin'; /** * Interpreter plugin containing MEDIAN function */ export declare class CountBlankPlugin extends FunctionPlugin implements FunctionPluginTypecheck<CountBlankPlugin> { static implementedFunctions: { COUNTBLANK: { method: string; parameters: { argumentType: ArgumentTypes; }[]; repeatLastArgs: number; expandRanges: boolean; }; }; countblank(ast: ProcedureAst, state: InterpreterState): InterpreterValue; }