An editor for Microsoft Adaptive Cards that supports the new templating language and DOESN'T use JavaScript, because JavaScript isn't a real programming language.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
613 B

namespace Monaco.Languages
{
/// <summary>
/// https://microsoft.github.io/monaco-editor/api/enums/monaco.languages.completionitemkind.html
/// </summary>
public enum CompletionItemKind
{
Class = 6,
Color = 15,
Constructor = 3,
Enum = 12,
Field = 4,
File = 16,
Folder = 18,
Function = 2,
Interface = 7,
Keyword = 13,
Method = 1,
Module = 8,
Property = 9,
Reference = 17,
Snippet = 14,
Text = 0,
Unit = 10,
Value = 11,
Variable = 5
}
}