Interface IMarkdownString

interface IMarkdownString {
    baseUri?: UriComponents;
    isTrusted?: boolean | MarkdownStringTrustedOptions;
    supportHtml?: boolean;
    supportThemeIcons?: boolean;
    uris?: { [href: string]: UriComponents };
    value: string;
}

Properties§

§readonly baseUri?: UriComponents
§readonly isTrusted?: boolean | MarkdownStringTrustedOptions
§readonly supportHtml?: boolean
§readonly supportThemeIcons?: boolean
§uris?: { ... }
§readonly value: string