mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode a4177f50c475fc0fa278a78235e3bee9ffdec781 (#8649)
* Merge from vscode a4177f50c475fc0fa278a78235e3bee9ffdec781 * distro * fix tests
This commit is contained in:
9
src/vs/vscode.d.ts
vendored
9
src/vs/vscode.d.ts
vendored
@@ -2341,6 +2341,12 @@ declare module 'vscode' {
|
||||
*/
|
||||
export class MarkdownString {
|
||||
|
||||
/**
|
||||
* Escapes any [ThemeIcons](#ThemeIcon), e.g. `$(zap)`, in the string.
|
||||
* @param value A string.
|
||||
*/
|
||||
static escapeThemeIcons(value: string): string;
|
||||
|
||||
/**
|
||||
* The markdown string.
|
||||
*/
|
||||
@@ -2356,8 +2362,9 @@ declare module 'vscode' {
|
||||
* Creates a new markdown string with the given value.
|
||||
*
|
||||
* @param value Optional, initial value.
|
||||
* @param options Optional, options to specify whether [ThemeIcons](#ThemeIcon) are supported within the [`MarkdownString`](#MarkdownString).
|
||||
*/
|
||||
constructor(value?: string);
|
||||
constructor(value?: string, options?: { supportThemeIcons?: boolean });
|
||||
|
||||
/**
|
||||
* Appends and escapes the given string to this markdown string.
|
||||
|
||||
Reference in New Issue
Block a user