2024-09-15 16:55:18 +02:00
|
|
|
import { i18nApi } from "../../dist/login";
|
|
|
|
import type { ThemeName } from "../kc.gen";
|
2023-04-17 04:01:44 +02:00
|
|
|
|
2024-09-15 16:55:18 +02:00
|
|
|
export const { useI18n, ofTypeI18n } = i18nApi
|
|
|
|
.withThemeName<ThemeName>()
|
|
|
|
.withTranslations({})
|
|
|
|
.create();
|
2023-04-17 04:01:44 +02:00
|
|
|
|
2024-06-05 18:50:00 +02:00
|
|
|
export type I18n = typeof ofTypeI18n;
|