When importing a type, we sometimes do it as import type { DataModel } from './types' and sometimes as import { DataModel } from './types'.
For readability and consistency, we want all the type imports to the first pattern (that includes the type in the import).
When importing a type, we sometimes do it as
import type { DataModel } from './types'and sometimes asimport { DataModel } from './types'.For readability and consistency, we want all the type imports to the first pattern (that includes the
typein the import).