From 2d9f04e89130e2a4fe71a7b68344bc4d5f61b709 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Mon, 1 Sep 2025 13:54:41 +0000 Subject: [PATCH] ran biome --- src/@types/helpers/type-helpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@types/helpers/type-helpers.ts b/src/@types/helpers/type-helpers.ts index 908ed15fc9a..4a2a3a11e88 100644 --- a/src/@types/helpers/type-helpers.ts +++ b/src/@types/helpers/type-helpers.ts @@ -11,7 +11,7 @@ import type { AbAttr } from "#abilities/ability"; * * ⚠️ Should never be used with `extends`, as this will nullify the exactness of the type. * - * As an example, used to ensure that the parameters of {@linkcode AbAttr.canApply} and {@linkcode AbAttr.getTriggerMessage} + * As an example, used to ensure that the parameters of {@linkcode AbAttr.canApply} and {@linkcode AbAttr.getTriggerMessage} * are compatible with the type of its {@linkcode AbAttr.apply | apply} method. * * @typeParam T - The type to match exactly @@ -110,7 +110,7 @@ export type CoerceNullPropertiesToUndefined = { */ export type AtLeastOne = Partial & ObjectValues<{ [K in keyof T]: Pick, K> }>; -/** +/** * Type helper that adds a brand to a type, used for nominal typing. * * @remarks