UNPKG

@sheetxl/formulas

Version:

Formulas - TypeScript formulas compatible with Excel built-ins.

18 lines (13 loc) 541 B
import { IFormulaContext } from '@sheetxl/primitives'; import { IFunction } from '@sheetxl/primitives'; export declare const formulaCount = 0; /** * Calls the auto generated binding function to bind all built-in functions. * * @remarks * This is a stubbed implementation. The actual formula binding will be generated * by the build process in the sdk package. */ export declare function initialize(getContext: () => IFormulaContext): Map<string, IFunction>; export declare const version = "0.0.0-stub"; export { }