Interface Token

    interface Token {
        text: string;
        type: string;
    }
    Index

    Properties

    Properties

    text: string
    type: string

    Prism token type ("keyword", "string", …). "" for plain text.