Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 260b243 commit 16c909bCopy full SHA for 16c909b
2 files changed
javascript/ql/test/library-tests/TypeScript/TypeOnlyImportExport/test.expected
@@ -4,3 +4,4 @@ getAnExportAccess
4
| Foo | tst.ts:3:15:3:17 | Foo |
5
getATypeDecl
6
| Foo | tst.ts:1:15:1:17 | Foo |
7
+| types | tst.ts:7:18:7:22 | types |
javascript/ql/test/library-tests/TypeScript/TypeOnlyImportExport/tst.ts
@@ -3,3 +3,7 @@ import type { Foo } from "foo";
3
export type { Foo };
var Foo = 45;
+
+import type * as types from "types";
8
9
+export type * as blah from "blah";
0 commit comments