File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ import { initializeCli } from './cli/cli';
2
2
import { plaintranslate } from './core/translator' ;
3
3
import { fileTranslator } from './core/json_file' ;
4
4
import { objectTranslator } from './core/json_object' ;
5
- import { TranslationConfig , TranslationModules } from './modules/modules' ;
5
+ import {
6
+ TranslationConfig ,
7
+ TranslationModules ,
8
+ TranslationModule ,
9
+ } from './modules/modules' ;
6
10
import { default_concurrency_limit , default_fallback } from './utils/micro' ;
7
11
8
12
const defaults : TranslationConfig = {
@@ -48,3 +52,7 @@ export async function runCli() {
48
52
export interface translatedObject {
49
53
[ key : string ] : any ;
50
54
}
55
+
56
+ export { TranslationModules } ;
57
+
58
+ export type { TranslationConfig , TranslationModule } ;
You can’t perform that action at this time.
0 commit comments