type
のみの import
/ export
ができるtsimport type { SomeThing } from "./some-module.js";
tsexport type { SomeThing };
before.tsimport { Foo1 } from "foo";
import type { Foo2 } from "foo";
after.tsimport { Foo1, type Foo2 } from "foo";
imoprt
で書けばいい import
で書くと無理になるケースがあり、その時に import type
が役立つらしい