mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
Hello Code
This commit is contained in:
19
src/vs/base/common/htmlContent.ts
Normal file
19
src/vs/base/common/htmlContent.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
'use strict';
|
||||
|
||||
export interface IHTMLContentElement {
|
||||
formattedText?:string;
|
||||
text?: string;
|
||||
className?: string;
|
||||
style?: string;
|
||||
customStyle?: any;
|
||||
tagName?: string;
|
||||
children?: IHTMLContentElement[];
|
||||
code?: { language: string; value: string; };
|
||||
isText?: boolean;
|
||||
role?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user