Font Fix
This commit is contained in:
@@ -139,4 +139,8 @@ export const tr = {
|
||||
},
|
||||
} as const;
|
||||
|
||||
export type TranslationKeys = typeof tr;
|
||||
type RecursiveString<T> = {
|
||||
[K in keyof T]: T[K] extends object ? RecursiveString<T[K]> : string;
|
||||
};
|
||||
|
||||
export type TranslationKeys = RecursiveString<typeof tr>;
|
||||
|
||||
Reference in New Issue
Block a user