hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
19 lines (18 loc) • 1.03 kB
TypeScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { ArraySize } from '../../ArraySize';
import { ProcedureAst } from '../../parser';
import { InterpreterState } from '../InterpreterState';
import { InterpreterValue } from '../InterpreterValue';
import { FunctionPlugin, FunctionPluginTypecheck, ImplementedFunctions } from './FunctionPlugin';
export declare class ArrayPlugin extends FunctionPlugin implements FunctionPluginTypecheck<ArrayPlugin> {
static implementedFunctions: ImplementedFunctions;
arrayformula(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
arrayformulaArraySize(ast: ProcedureAst, state: InterpreterState): ArraySize;
arrayconstrain(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
arrayconstrainArraySize(ast: ProcedureAst, state: InterpreterState): ArraySize;
filter(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
filterArraySize(ast: ProcedureAst, state: InterpreterState): ArraySize;
}