Interface InlineFormatLink

An inline link.

interface InlineFormatLink {
    end: number;
    start: number;
    type: "link";
    url: string;
}

Hierarchy

  • InlineFormatBase
    • InlineFormatLink

Properties

Properties

end: number

The ending index of the formatting range (inclusive).

start: number

The starting index of the formatting range (inclusive).

type
url: string

The link's URL.