hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
18 lines (17 loc) • 629 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { ProcedureAst } from '../../parser';
import { InterpreterState } from '../InterpreterState';
import { InterpreterValue } from '../InterpreterValue';
import { FunctionPlugin, FunctionPluginTypecheck } from './FunctionPlugin';
export declare class VersionPlugin extends FunctionPlugin implements FunctionPluginTypecheck<VersionPlugin> {
static implementedFunctions: {
VERSION: {
method: string;
parameters: never[];
};
};
version(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
}