ts-ioc-container 41.3.0 → 41.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-ioc-container",
3
- "version": "41.3.0",
3
+ "version": "41.3.1",
4
4
  "description": "Typescript IoC container",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -1,4 +1,4 @@
1
- export { type IContainer, type Resolvable, type IContainerModule, type DependencyKey, type InjectionToken, type Tag, type Tagged, type Instance, } from './container/IContainer';
1
+ export { type IContainer, type Resolvable, type IContainerModule, type DependencyKey, type InjectionToken, type Tag, type Tagged, type Instance, type ResolveOneOptions, type ResolveManyOptions, } from './container/IContainer';
2
2
  export { Container } from './container/Container';
3
3
  export { EmptyContainer } from './container/EmptyContainer';
4
4
  export { AutoMockedContainer } from './container/AutoMockedContainer';
@@ -7,7 +7,7 @@ export { type IInjector, type InjectOptions } from './injector/IInjector';
7
7
  export { MetadataInjector } from './injector/MetadataInjector';
8
8
  export { SimpleInjector } from './injector/SimpleInjector';
9
9
  export { ProxyInjector } from './injector/ProxyInjector';
10
- export { type ResolveDependency, type IProvider, scopeAccess, lazy, argsFn, args, type ArgsFn, ProviderDecorator, type IMapper, } from './provider/IProvider';
10
+ export { type ResolveDependency, type IProvider, scopeAccess, lazy, argsFn, args, type ArgsFn, ProviderDecorator, type IMapper, type ProviderOptions, } from './provider/IProvider';
11
11
  export { Provider } from './provider/Provider';
12
12
  export { singleton, SingletonProvider } from './provider/SingletonProvider';
13
13
  export { type Cache, multiCache, MultiCache } from './provider/Cache';