5 lines
200 B
TypeScript
Raw Normal View History

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