From e9b758414ce7dd0257085d236bc45fa41279e7ff Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Sun, 17 Aug 2025 22:50:43 -0400 Subject: [PATCH] Fixed type error in d.ts file to shut up linters --- test/@types/vitest.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/@types/vitest.d.ts b/test/@types/vitest.d.ts index 21cf76ed352..06cc0ecac0d 100644 --- a/test/@types/vitest.d.ts +++ b/test/@types/vitest.d.ts @@ -22,7 +22,7 @@ import type { expectedStatusType } from "#test/test-utils/matchers/to-have-statu import type { toHaveTypesOptions } from "#test/test-utils/matchers/to-have-types"; import type { TurnMove } from "#types/turn-move"; import type { AtLeastOne } from "#types/type-helpers"; -import type { toDmgValue } from "utils/common"; +import type { toDmgValue } from "#utils/common"; import type { expect } from "vitest"; declare module "vitest" {