hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
20 lines (19 loc) • 691 B
TypeScript
/**
* @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';
export declare class PowerPlugin extends FunctionPlugin implements FunctionPluginTypecheck<PowerPlugin> {
static implementedFunctions: {
POWER: {
method: string;
parameters: {
argumentType: ArgumentTypes;
}[];
};
};
power(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
}