Interface IMarkdownString

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

Properties

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

Type declaration

value: string