Fix all remaining biome lints

This commit is contained in:
Sirz Benjie 2025-03-07 21:54:04 -06:00
parent 61c75de46f
commit f1988cf237
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -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, unknown>) => string
interface TFunction {
(key: string | string[], options?: TOptions & Record<string, unknown>): string;
}
}