Joseph Garrone 4292c0c642 Rework i18n
2024-07-13 09:07:11 +02:00

6 lines
270 B
TypeScript

import type { GenericI18n } from "./GenericI18n";
import type { MessageKey_defaultSet, KcContextLike } from "./i18n";
export type { MessageKey_defaultSet, KcContextLike };
export type I18n = GenericI18n<MessageKey_defaultSet>;
export { createUseI18n } from "./useI18n";