2024-09-21 23:09:12 +02:00

10 lines
262 B
TypeScript

import { i18nBuilder } from "../../dist/login";
import type { ThemeName } from "../kc.gen";
export const { useI18n, ofTypeI18n } = i18nBuilder
.withThemeName<ThemeName>()
.withCustomTranslations({})
.create();
export type I18n = typeof ofTypeI18n;