From f1988cf23784568e250bfef3d1009c3aa79ffd51 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Fri, 7 Mar 2025 21:54:04 -0600 Subject: [PATCH] Fix all remaining biome lints --- src/@types/i18next.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/@types/i18next.d.ts b/src/@types/i18next.d.ts index c7bd576140e..0eaa1e6ff0f 100644 --- a/src/@types/i18next.d.ts +++ b/src/@types/i18next.d.ts @@ -2,5 +2,7 @@ import type { TOptions } from "i18next"; // Module declared to make referencing keys in the localization files type-safe. declare module "i18next" { - type TFunction = (key: string | string[], options?: TOptions & Record) => string + interface TFunction { + (key: string | string[], options?: TOptions & Record): string; + } }