IMarkdownString
ts
interface IMarkdownString {
baseUri?: UriComponents;
isTrusted?: boolean | MarkdownStringTrustedOptions;
supportHtml?: boolean;
supportThemeIcons?: boolean;
uris?: {
[href: string]: UriComponents;
};
value: string;
}
baseUri
isTrusted
- 类型:
boolean
| MarkdownStringTrustedOptions
supportHtml
- 类型:
boolean
supportThemeIcons
- 类型:
boolean
uris
- 类型:
{ [href: string]: UriComponents; }
- 参数:
[href: string]:
UriComponents
value
- 类型:
string