[[Bun]]のバージョンと[[tsconfig.json]]の`types`設定、[[@types.bun|@types/bun]]のインストール状況による。
サジェストされるのは以下のケース。
| Bunのバージョン | `types` | `@types/bun` |
| --------------- | ------------ | -------------- |
| 1.0.19 | `@types/bun` | インストール済 |
| 1.0.19 | `bun-types` | どちらでも |
[[Bun]] 1.0.20ではどちらものケースもサジェストされなかった。今のところ、以下のように明示的にimport文を書くしかない。
```ts
import { test } from "bun:test"
```