IronCalc Wasm
    Preparing search index...

    Type Alias TokenType

    TokenType:
        | "Illegal"
        | "EOF"
        | { Ident: string }
        | { String: string }
        | { Boolean: boolean }
        | { Number: number }
        | { Error: ErrorType }
        | { Compare: OpCompareType }
        | { Sum: OpSumType }
        | { Product: OpProductType }
        | "Power"
        | "LeftParenthesis"
        | "RightParenthesis"
        | "Colon"
        | "Semicolon"
        | "LeftBracket"
        | "RightBracket"
        | "LeftBrace"
        | "RightBrace"
        | "Comma"
        | "Bang"
        | "Percent"
        | "And"
        | "Spill"
        | "Backslash"
        | Reference
        | Range