We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8890366 commit 28314baCopy full SHA for 28314ba
src/vs/editor/contrib/markdownRenderer/browser/markdownRenderer.ts
@@ -17,13 +17,13 @@ import { tokenizeToString } from 'vs/editor/common/languages/textToHtmlTokenizer
17
import { IOpenerService } from 'vs/platform/opener/common/opener';
18
19
export interface IMarkdownRenderResult extends IDisposable {
20
- element: HTMLElement;
+ readonly element: HTMLElement;
21
}
22
23
export interface IMarkdownRendererOptions {
24
- editor?: ICodeEditor;
25
- codeBlockFontFamily?: string;
26
- codeBlockFontSize?: string;
+ readonly editor?: ICodeEditor;
+ readonly codeBlockFontFamily?: string;
+ readonly codeBlockFontSize?: string;
27
28
29
/**
0 commit comments