10 lines
248 B
TypeScript
Raw Normal View History

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