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 b1ca288 commit da369e6Copy full SHA for da369e6
packages/operator-keyword/lib/keyword.js
@@ -12,6 +12,9 @@ const declarations = [
12
];
13
14
const conditions = ['if'];
15
+const typescript = [
16
+ 'interface',
17
+];
18
19
const expressions = [
20
'as',
@@ -26,6 +29,7 @@ const statements = [
26
29
...conditions,
27
30
...declarations,
28
31
...moduleDeclarations,
32
+ ...typescript,
33
'break',
34
'continue',
35
'for',
@@ -35,7 +39,6 @@ const statements = [
39
'throw',
36
40
'of',
37
41
'while',
38
- 'interface',
42
43
44
const keywords = [
0 commit comments