inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
26 lines (25 loc) • 1.58 kB
TypeScript
import * as keys from './constants/metadata_keys';
export declare const METADATA_KEY: typeof keys;
export { Container } from './container/container';
export { BindingScopeEnum, BindingTypeEnum, TargetTypeEnum } from './constants/literal_types';
export { AsyncContainerModule, ContainerModule } from './container/container_module';
export { createTaggedDecorator } from './annotation/decorator_utils';
export { injectable } from './annotation/injectable';
export { tagged } from './annotation/tagged';
export { named } from './annotation/named';
export { inject } from './annotation/inject';
export { LazyServiceIdentifier } from './annotation/lazy_service_identifier';
export { LazyServiceIdentifier as LazyServiceIdentifer } from './annotation/lazy_service_identifier';
export { optional } from './annotation/optional';
export { unmanaged } from './annotation/unmanaged';
export { multiInject } from './annotation/multi_inject';
export { targetName } from './annotation/target_name';
export { postConstruct } from './annotation/post_construct';
export { preDestroy } from './annotation/pre_destroy';
export { MetadataReader } from './planning/metadata_reader';
export { id } from './utils/id';
export { interfaces } from './interfaces/interfaces';
export { decorate } from './annotation/decorator_utils';
export { traverseAncerstors, taggedConstraint, namedConstraint, typeConstraint } from './syntax/constraint_helpers';
export { getServiceIdentifierAsString } from './utils/serialization';
export { multiBindToService } from './utils/binding_utils';