hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
27 lines (26 loc) • 908 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 CharPlugin extends FunctionPlugin implements FunctionPluginTypecheck<CharPlugin> {
static implementedFunctions: {
CHAR: {
method: string;
parameters: {
argumentType: ArgumentTypes;
}[];
};
UNICHAR: {
method: string;
parameters: {
argumentType: ArgumentTypes;
}[];
};
};
char(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
unichar(ast: ProcedureAst, state: InterpreterState): InterpreterValue;
}