2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
|
|
|
* This is a description
|
|
|
|
*/
|
|
|
|
|
2015-03-16 17:43:22 -04:00
|
|
|
export {Inject, InjectPromise, InjectLazy, Injectable, Optional, DependencyAnnotation} from './src/di/annotations';
|
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-02-05 16:08:05 -05:00
|
|
|
export {Key, KeyRegistry} from './src/di/key';
|
2015-02-02 19:25:34 -05:00
|
|
|
export {KeyMetadataError, NoProviderError, ProviderError, AsyncBindingError, CyclicDependencyError,
|
2015-02-05 16:08:05 -05:00
|
|
|
InstantiationError, InvalidBindingError, NoAnnotationError} from './src/di/exceptions';
|
|
|
|
export {OpaqueToken} from './src/di/opaque_token';
|