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

View File

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