hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
14 lines (13 loc) • 652 B
TypeScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { ProcedureAst } from '../../parser';
import { InterpreterState } from '../InterpreterState';
import { InterpreterValue } from '../InterpreterValue';
import { FunctionPlugin, FunctionPluginTypecheck, ImplementedFunctions } from './FunctionPlugin';
export declare class CodePlugin extends FunctionPlugin implements FunctionPluginTypecheck<CodePlugin> {
static implementedFunctions: ImplementedFunctions;
code(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
unicode(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
}