spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← All files
name: dist/Parser/RuleIndex.d.ts
-rw-r--r--
758
 1declare const enum RuleIndex {
 2    WhiteSpace = 0,
 3    DoubleQuotes = 1,
 4    SingleQuotes = 2,
 5    FormulaName = 3,
 6    $A1Cell = 6,
 7    A1Cell = 7,
 8    FormulaNameSimple = 8,
 9    Variable = 9,
10    SimpleVariable = 10,
11    Integer = 11,
12    SelfContainedArray = 12,
13    DollarSign = 13,
14    Ampersand = 14,
15    SingleWhitespace = 15,
16    Period = 16,
17    Colon = 17,
18    Semicolon = 18,
19    Comma = 19,
20    Asterisk = 20,
21    ForwardSlash = 21,
22    Minus = 22,
23    Plus = 23,
24    Caret = 24,
25    OpenParen = 25,
26    CloseParen = 26,
27    GreaterThan = 27,
28    LessThanSign = 28,
29    OpenDoubleQuote = 30,
30    OpenSingleQuote = 31,
31    ExclamationPoint = 32,
32    Equals = 33,
33    Percent = 34,
34    FullError = 35,
35    EndOfString = 36,
36}
37export { RuleIndex };