外观
强制对类型导入使用一致的方式。
不一致地使用类型导入会让代码更难于理解。
import { Foo } from "Foo"; type T = Foo; type S = import("Foo");