2015-04-10 12:45:02 +02:00
|
|
|
/**
|
|
|
|
* @module
|
2015-04-15 22:35:38 +00:00
|
|
|
* @public
|
2015-04-10 12:45:02 +02:00
|
|
|
* @description
|
2015-04-17 03:29:05 -07:00
|
|
|
* The `di` module provides dependency injection container services.
|
2015-04-10 12:45:02 +02:00
|
|
|
*/
|
|
|
|
|
2015-03-16 14:43:22 -07:00
|
|
|
export {Inject, InjectPromise, InjectLazy, Injectable, Optional, DependencyAnnotation} from './src/di/annotations';
|
2015-02-05 13:08:05 -08:00
|
|
|
export {Injector} from './src/di/injector';
|
2015-04-09 23:17:05 -07:00
|
|
|
export {Binding, ResolvedBinding, Dependency, bind} from './src/di/binding';
|
2015-02-05 13:08:05 -08:00
|
|
|
export {Key, KeyRegistry} from './src/di/key';
|
2015-02-02 16:25:34 -08:00
|
|
|
export {KeyMetadataError, NoProviderError, ProviderError, AsyncBindingError, CyclicDependencyError,
|
2015-02-05 13:08:05 -08:00
|
|
|
InstantiationError, InvalidBindingError, NoAnnotationError} from './src/di/exceptions';
|
|
|
|
export {OpaqueToken} from './src/di/opaque_token';
|