Interface ILink

Expand description

A link inside the editor.

interface ILink {
    range: IRange;
    tooltip?: string;
    url?: string | Uri;
}

Properties§

§range: IRange
§tooltip?: string
§url?: string | Uri