-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.d.ts
49 lines (48 loc) · 2 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { AnalyzerOptionsType } from './src/Type/AnalyzerOptionsType';
import { CatalogType } from './src/Type/CatalogType';
import { CompiledCatalogType } from './src/Type/CompiledCatalogType';
import { CompiledDictionaryType } from './src/Type/CompiledDictionaryType';
import { CompiledValueType } from './src/Type/CompiledValueType';
import { CompilerOptionsType } from './src/Type/CompilerOptionsType';
import { ContextGlobalsType } from './src/Type/ContextGlobalsType';
import { ContextParamsType } from './src/Type/ContextParamsType';
import { ContextType } from './src/Type/ContextType';
import { DictionaryType } from './src/Type/DictionaryType';
import { GeneratorOptionsType } from './src/Type/GeneratorOptionsType';
import { KeyFormatterType } from './src/Type/KeyFormatterType';
import { KeyType } from './src/Type/KeyType';
import { LocaleType } from './src/Type/LocaleType';
import { LoggerOptionsType } from './src/Type/LoggerOptionsType';
import { PluginDictionaryType } from './src/Type/PluginDictionaryType';
import { PluginInputType } from './src/Type/PluginInputType';
import { PluginOptionsType } from './src/Type/PluginOptionsType';
import { PluginOutputAnalysisType } from './src/Type/PluginOutputAnalysisType';
import { PluginOutputCompilationType } from './src/Type/PluginOutputCompilationType';
import { PluginOutputType } from './src/Type/PluginOutputType';
import { TranslatorOptionsType } from './src/Type/TranslatorOptionsType';
import { ValueType } from './src/Type/ValueType';
export {
AnalyzerOptionsType,
CatalogType,
CompiledCatalogType,
CompiledDictionaryType,
CompiledValueType,
CompilerOptionsType,
ContextGlobalsType,
ContextParamsType,
ContextType,
DictionaryType,
GeneratorOptionsType,
KeyFormatterType,
KeyType,
LocaleType,
LoggerOptionsType,
PluginDictionaryType,
PluginInputType,
PluginOptionsType,
PluginOutputAnalysisType,
PluginOutputCompilationType,
PluginOutputType,
TranslatorOptionsType,
ValueType,
};