2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
2015-04-15 18:35:38 -04:00
|
|
|
* @public
|
2015-04-10 06:45:02 -04:00
|
|
|
* @description
|
2015-04-17 06:29:05 -04:00
|
|
|
* The `di` module provides dependency injection container services.
|
2015-04-10 06:45:02 -04:00
|
|
|
*/
|
|
|
|
|
2015-05-04 14:11:22 -04:00
|
|
|
export * from './src/di/annotations';
|
|
|
|
export * from './src/di/decorators';
|
2015-05-13 18:54:46 -04:00
|
|
|
export * from './src/di/forward_ref';
|
2015-02-05 16:08:05 -05:00
|
|
|
export {Injector} from './src/di/injector';
|
2015-04-10 02:17:05 -04:00
|
|
|
export {Binding, ResolvedBinding, Dependency, bind} from './src/di/binding';
|
2015-05-08 20:57:03 -04:00
|
|
|
export {Key, KeyRegistry, TypeLiteral} from './src/di/key';
|
2015-04-24 18:19:11 -04:00
|
|
|
export {
|
|
|
|
NoBindingError,
|
|
|
|
AbstractBindingError,
|
|
|
|
AsyncBindingError,
|
|
|
|
CyclicDependencyError,
|
|
|
|
InstantiationError,
|
|
|
|
InvalidBindingError,
|
|
|
|
NoAnnotationError
|
|
|
|
} from './src/di/exceptions';
|
2015-02-05 16:08:05 -05:00
|
|
|
export {OpaqueToken} from './src/di/opaque_token';
|
2015-04-24 18:19:11 -04:00
|
|
|
|
|
|
|
// HACK: workaround for Traceur behavior.
|
|
|
|
// It expects all transpiled modules to contain this marker.
|
|
|
|
// TODO: remove this when we no longer use traceur
|
|
|
|
export var __esModule = true;
|