@argdown/core
    Preparing search index...

    Interface IRange

    A formatted range of text.

    Used to save information about ranges containing bold and italic text, a mention, link or a tag.

    interface IRange {
        start: number;
        stop: number;
        tag?: string;
        title?: string;
        type: RangeType;
        url?: string;
    }
    Index

    Properties

    start: number
    stop: number
    tag?: string
    title?: string
    type: RangeType
    url?: string