2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @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
|
|
|
*/
|
|
|
|
|
2016-09-12 12:44:20 -04:00
|
|
|
export * from './di/metadata';
|
2015-06-19 19:33:49 -04:00
|
|
|
|
2015-09-04 01:01:36 -04:00
|
|
|
export {forwardRef, resolveForwardRef, ForwardRefFn} from './di/forward_ref';
|
2016-01-06 17:13:44 -05:00
|
|
|
|
2015-09-22 15:58:36 -04:00
|
|
|
export {Injector} from './di/injector';
|
2016-04-14 15:35:24 -04:00
|
|
|
export {ReflectiveInjector} from './di/reflective_injector';
|
2016-08-15 22:37:42 -04:00
|
|
|
export {Provider, TypeProvider, ValueProvider, ClassProvider, ExistingProvider, FactoryProvider} from './di/provider';
|
2016-08-17 19:53:09 -04:00
|
|
|
export {ResolvedReflectiveFactory, ResolvedReflectiveProvider} from './di/reflective_provider';
|
2016-04-14 15:35:24 -04:00
|
|
|
export {ReflectiveKey} from './di/reflective_key';
|
2015-09-04 01:01:36 -04:00
|
|
|
export {OpaqueToken} from './di/opaque_token';
|