UNPKG

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