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.
2 parents f427974 + 62ecc22 commit cf481b6Copy full SHA for cf481b6
com.palantir.typescript/src/com/palantir/typescript/services/language/ScriptElementKind.java
@@ -53,6 +53,9 @@ public enum ScriptElementKind {
53
// enum E
54
ENUM_ELEMENT("enum"),
55
56
+ // enum member
57
+ ENUM_MEMBER("enum member"),
58
+
59
// Inside module and script only
60
// var v(..
61
VARIABLE_ELEMENT("var"),
@@ -103,8 +106,14 @@ public enum ScriptElementKind {
103
106
104
107
CONST_ELEMENT("const"),
105
108
- LET_ELEMENT("let");
-
109
+ LET_ELEMENT("let"),
110
111
+ DIRECTORY("directory"),
112
113
+ EXTERNAL_MODULE_NAME("external module name"),
114
115
+ JSX_ATTRIBUTE("JSX attribute");
116
117
private final String value;
118
119
ScriptElementKind(String value) {
0 commit comments