This commit is contained in:
github-actions[bot]
2026-01-18 03:14:49 +00:00
commit f3ee114735
336 changed files with 42224 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
interface TOptions {
ns?: string;
replace?: Record<string, unknown>;
}
interface Translation {
t: (key: string, optionsOrText?: string | TOptions, options?: TOptions) => string;
}
export declare function useTranslation(): Translation;
export {};