UNPKG

@openfisca/json-model

Version:

Library to handle informations extracted in JSON or YAML format from OpenFisca parameters, variables, etc

12 lines (11 loc) 460 B
import { type NodeParameter } from "../parameters"; import { Period } from "../periods"; import type { Variable } from "../variables"; import type { OpenfiscaAstNode } from "./nodes"; export declare function xlsxFormulaFromOpenfiscaAst(variable: Variable, node: OpenfiscaAstNode, period: Period, rootParameter: NodeParameter, variableSummaryByName: { [name: string]: Variable; }): { input: OpenfiscaAstNode; output: string; error?: unknown; };