From fc2eb7fd41e8014e5f77208487b9de9b98311b76 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sat, 2 Aug 2025 15:30:46 -0700 Subject: [PATCH] Add missing TSDoc import to `to-have-weather.ts` --- test/test-utils/matchers/to-have-weather.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test-utils/matchers/to-have-weather.ts b/test/test-utils/matchers/to-have-weather.ts index 2352e84862f..49433b2137b 100644 --- a/test/test-utils/matchers/to-have-weather.ts +++ b/test/test-utils/matchers/to-have-weather.ts @@ -1,3 +1,7 @@ +/** biome-ignore-start lint/correctness/noUnusedImports: TSDoc imports */ +import type { GameManager } from "#test/test-utils/game-manager"; +/** biome-ignore-end lint/correctness/noUnusedImports: TSDoc imports */ + import { WeatherType } from "#enums/weather-type"; import { isGameManagerInstance, receivedStr } from "#test/test-utils/test-utils"; import { toTitleCase } from "#utils/strings";