JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Interface SemanticSpan

    An editor-agnostic semantic span (for decorations / semantic tokens).

    interface SemanticSpan {
        from: number;
        kind: SemanticSpanKind;
        to: number;
        value?: string;
    }

    Hierarchy (View Summary)

    Index
    from: number
    to: number
    value?: string