UNPKG

1.03 kBPlain TextView Raw
1import 'reflect-metadata'
2
3import './Promise'
4
5/**
6 * Export types as a a namespace and export all
7 * exports directly as well
8 */
9import * as Types from './Types'
10
11
12import * as Messages from './Messages'
13
14/**
15 * Export all the decorations, etc
16 */
17import * as Decorations from './Decorations'
18
19
20/**
21 * Export constants
22 */
23import * as Constants from './Constants'
24
25/**
26 * Export log customization configuration
27 */
28import * as Log from './log'
29
30import * as Errors from './Errors'
31
32/**
33 * Export the coordinator and coordinator functions
34 */
35export * from './Coordinator'
36
37/**
38 * Re-export assert solely for plugins
39 */
40import {assert} from './Util'
41
42/**
43 * Export all general types
44 */
45export {Types, Decorations, Constants, Log, Errors,Messages,assert}
46
47
48/**
49 * Export the base Repo
50 */
51export * from './Repo'
52export * from './Types'
53export * from './Decorations'
54export * from './Constants'
55export * from './Util'
56export * from './Messages'
57export * from './Errors'
58export * from './MetadataManager'
59export * from './ModelMapper'
60
61