upload to github
This commit is contained in:
commit
92cc81e813
51 changed files with 8041 additions and 0 deletions
11
src/types/i18n.ts
Normal file
11
src/types/i18n.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// types/i18n.ts
|
||||
export interface TranslationMessages {
|
||||
[key: string]: string | TranslationMessages;
|
||||
}
|
||||
|
||||
export interface I18nConfig {
|
||||
fallbackLocale: string;
|
||||
messages: {
|
||||
[locale: string]: TranslationMessages;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue