Interface Token

interface Token {
    Error?: Error;
    Literal: string;
    Type: TokenType;
}

Properties

Error?: Error
Literal: string
Type: TokenType