UNPKG

hyperformula

Version:

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

15 lines (14 loc) 701 B
/** * @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 const PI: number; export declare class MathConstantsPlugin extends FunctionPlugin implements FunctionPluginTypecheck<MathConstantsPlugin> { static implementedFunctions: ImplementedFunctions; pi(ast: ProcedureAst, state: InterpreterState): InterpreterValue; sqrtpi(ast: ProcedureAst, state: InterpreterState): InterpreterValue; }