File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ export enum EndOfLine {
1414
1515export enum EnvironmentVariableMutatorType {
1616 Replace = 1 ,
17- Append = 2 ,
18- Prepend = 3
17+ Append = 2 ,
18+ Prepend = 3
1919}
2020
2121export class TextEdit implements ITextEdit {
Original file line number Diff line number Diff line change 22 * Copyright (c) Microsoft Corporation. All rights reserved.
33 * Licensed under the MIT License. See License.txt in the project root for license information.
44 *--------------------------------------------------------------------------------------------*/
5+ import { MarkupContent , MarkupKind } from "vscode-languageserver-protocol"
56import { URI } from "vscode-uri"
67import { BaseMarkdownString } from "./baseMarkdownString"
78
8- export class MarkdownString {
9+ export class MarkdownString implements MarkupContent {
10+ public kind : MarkupKind = MarkupKind . Markdown
11+
912 readonly #delegate: BaseMarkdownString
1013
1114 public static isMarkdownString ( thing : any ) : thing is MarkdownString {
You can’t perform that action at this time.
0 commit comments