Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Commit 9c71a62

Browse files
ikatyangJamesHenry
authored andcommitted
Fix: add missing TSSymbolKeyword type (#385)
1 parent e10aab8 commit 9c71a62

File tree

3 files changed

+460
-0
lines changed

3 files changed

+460
-0
lines changed

lib/ast-node-types.js

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ module.exports = {
139139
TSReadonlyKeyword: "TSReadonlyKeyword",
140140
TSStaticKeyword: "TSStaticKeyword",
141141
TSStringKeyword: "TSStringKeyword",
142+
TSSymbolKeyword: "TSSymbolKeyword",
142143
TSTypeLiteral: "TSTypeLiteral",
143144
TSTypePredicate: "TSTypePredicate",
144145
TSTypeReference: "TSTypeReference",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
function test(abc: Map<symbol, string>) {}

0 commit comments

Comments
 (0)