Appearance
Enforce consistent usage of type imports.
inconsistent usage of type imports can make the code harder to read and understand.
import { Foo } from "Foo"; type T = Foo; type S = import("Foo");