cleanup(di): change di.js to declare all exported symbols

This commit is contained in:
vsavkin 2014-12-29 15:00:33 -08:00
parent 739f624cc8
commit e5dbc69f42
2 changed files with 7 additions and 8 deletions

View File

@ -1,7 +1,7 @@
export * from './annotations'; export {Inject, InjectPromise, InjectLazy, DependencyAnnotation} from './annotations';
export * from './injector'; export {Injector} from './injector';
export * from './binding'; export {Binding, Dependency, bind} from './binding';
export * from './key'; export {Key, KeyRegistry} from './key';
export * from './module'; export {KeyMetadataError, NoProviderError, ProviderError, AsyncBindingError, CyclicDependencyError,
export * from './exceptions'; InstantiationError, InvalidBindingError, NoAnnotationError} from './exceptions';
export * from './opaque_token'; export {OpaqueToken} from './opaque_token';

View File

@ -1 +0,0 @@
export class Module {}