Documentation - v1.5.3
    Preparing search index...

    Interface for TokenManager tokens.

    This interface defines the structure for tokens used in the TokenManager.

    interface TMTokens {
        currentState: undefined | string;
        end: number;
        start: number;
    }

    Implemented by

    Index

    Properties

    currentState: undefined | string

    The current state of the token, can be undefined.

    end: number

    The end index of the token.

    start: number

    The start index of the token.