Skip to content

Commit

Permalink
Merge pull request #351 from jeffijoe/fix/type-exports
Browse files Browse the repository at this point in the history
Add back some missing type exports
  • Loading branch information
jeffijoe authored Jan 10, 2024
2 parents c9a067e + 129e44c commit 722d4af
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v10.0.1

- Add back some type exports ([#351](https://github.com/jeffijoe/awilix/pull/351))

# v10.0.0

- Add (optional, off by default) strict mode to enforce extra correctness checks in both resolution and registration ([#349](https://github.com/jeffijoe/awilix/pull/349) by [@fnimick](https://github.com/fnimick))
Expand Down
19 changes: 18 additions & 1 deletion src/awilix.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
export { AwilixContainer, ContainerOptions, createContainer } from './container'
export {
AwilixContainer,
ContainerOptions,
createContainer,
CacheEntry,
ClassOrFunctionReturning,
FunctionReturning,
NameAndRegistrationPair,
RegistrationHash,
ResolveOptions,
} from './container'
export {
AwilixError,
AwilixRegistrationError,
Expand All @@ -17,6 +27,13 @@ export {
BuildResolverOptions,
Disposer,
InjectorFunction,
Resolver,
ResolverOptions,
BuildResolver,
Constructor,
DisposableResolver,
DisposableResolverOptions,
RESOLVER,
aliasTo,
asClass,
asFunction,
Expand Down

0 comments on commit 722d4af

Please sign in to comment.