isolate types
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
export * from './registry/translation.registry.js';
|
||||
export * from './localize.controller.js';
|
||||
export { registerTranslation } from './manager.js';
|
||||
export * from './types/translation.js';
|
||||
export * from './manager.js';
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
export type UmbTranslationEntry = string | ((...args: never[]) => string);
|
||||
export type UmbTranslationsDictionary = Record<string, Record<string, UmbTranslationEntry>>;
|
||||
export type UmbTranslationsFlatDictionary = Record<string, UmbTranslationEntry>;
|
||||
Reference in New Issue
Block a user