6 lines
270 B
TypeScript
Raw Normal View History

2024-07-13 09:07:11 +02:00
import type { GenericI18n } from "./GenericI18n";
import type { MessageKey_defaultSet, KcContextLike } from "./i18n";
export type { MessageKey_defaultSet, KcContextLike };
export type I18n = GenericI18n<MessageKey_defaultSet>;
2024-06-21 02:01:32 +02:00
export { createUseI18n } from "./useI18n";