TS: Add test case for import type * as ns

This commit is contained in:
Asger Feldthaus
2020-02-07 16:48:16 +00:00
parent 260b243c28
commit 16c909b433
2 changed files with 5 additions and 0 deletions

View File

@@ -4,3 +4,4 @@ getAnExportAccess
| Foo | tst.ts:3:15:3:17 | Foo |
getATypeDecl
| Foo | tst.ts:1:15:1:17 | Foo |
| types | tst.ts:7:18:7:22 | types |

View File

@@ -3,3 +3,7 @@ import type { Foo } from "foo";
export type { Foo };
var Foo = 45;
import type * as types from "types";
export type * as blah from "blah";