Ran biome

This commit is contained in:
Bertie690 2025-07-27 23:32:58 -04:00
parent a9e66e43ad
commit 0449b3f2ea
2 changed files with 1 additions and 5 deletions

2
global.d.ts vendored
View File

@ -1,7 +1,5 @@
import type { SetupServerApi } from "msw/node";
export {};
declare global {
/**
* Only used in testing.

View File

@ -2,7 +2,5 @@ import type { TOptions } from "i18next";
// Module declared to make referencing keys in the localization files type-safe.
declare module "i18next" {
interface TFunction {
(key: string | string[], options?: TOptions & Record<string, unknown>): string;
}
type TFunction = (key: string | string[], options?: TOptions & Record<string, unknown>) => string;
}