## [[Type-Only Imports and Export]]
typeをimportするのに`type`がついていないケース。
```ts
export type Hoge = ...
```
```ts
import { Hoge } from "hoge"
```
[[Nuxt3.8からは明示的なtype importsが必要]]なので、上記はエラーになる。以下のように修正が必要。
```diff
import { Hoge } from "hoge"
import { type Hoge } from "hoge"
```