UNPKG

hyperformula-dc

Version:

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

37 lines (36 loc) 1.28 kB
/** * @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 RomanPlugin extends FunctionPlugin implements FunctionPluginTypecheck<RomanPlugin> { static implementedFunctions: { ROMAN: { method: string; parameters: ({ argumentType: ArgumentTypes; minValue: number; lessThan: number; optionalArg?: undefined; defaultValue?: undefined; } | { argumentType: ArgumentTypes; optionalArg: boolean; defaultValue: number; minValue?: undefined; lessThan?: undefined; })[]; }; ARABIC: { method: string; parameters: { argumentType: ArgumentTypes; }[]; }; }; roman(ast: ProcedureAst, state: InterpreterState): InterpreterValue; arabic(ast: ProcedureAst, state: InterpreterState): InterpreterValue; }