f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/js/models/nodes/NodeType.ts
-rw-r--r--
434
 1/**
 2 * All nodes have a type.
 3 */
 4export enum NodeType {
 5  Number = "Number",
 6  Text = "Text",
 7  Logical = "Logical",
 8  Error = "Error",
 9  Variable = "Variable",
10  Formula = "Formula",
11  List = "List",
12  Range = "Range",
13  MultiRange = "RangeQuery",
14  UnaryMinusOperation = "UnaryMinusOperation",
15  UnaryPlusOperation = "UnaryPlusOperation",
16  UnaryPercentOperation = "UnaryPercentOperation",
17  BinaryOperation = "BinaryOperation",
18}