Interface Highlight

    interface Highlight {
        priority: number;
        type: HighlightType;
        forEach(
            callbackfn: (
                value: AbstractRange,
                key: AbstractRange,
                parent: Highlight,
            ) => void,
            thisArg?: any,
        ): void;
    }

    Properties

    Methods

    Properties

    priority: number

    Methods