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 6012cce commit 11ccee0Copy full SHA for 11ccee0
tests/cases/importTypeOnly.ts
@@ -4,3 +4,11 @@ import type * as types from "mod";
4
import type from "mod";
5
import type = require("mod");
6
import type T = require("mod");
7
+import { type X } from "mod";
8
+import { X, type Y} from "mod";
9
+import type { type X } from "mod"; // grammar error
10
+import { type as foo } from "mod"; // not type-only
11
+import { type type } from "mod";
12
+import { type as as as } from "mod";
13
+import { type type as as } from "mod";
14
+import { type type as type } from "mod";
0 commit comments