@faubulous/mentor-rdf-serializers
    Preparing search index...

    Interface Scope

    Scope entry representing a nesting level.

    interface Scope {
        indentLevel: number;
        isInline: boolean;
        isMultiLine: boolean;
        type: "curly" | "bracket" | "paren";
    }
    Index

    Properties

    indentLevel: number

    The indent level when this scope was entered.

    isInline: boolean

    Whether the block is formatted inline (no line breaks).

    isMultiLine: boolean

    Whether the block spans multiple source lines.

    type: "curly" | "bracket" | "paren"

    Type of the scope delimiter.