From 88488c36f059b837e8dce48fb4e92c9d40754e0f Mon Sep 17 00:00:00 2001 From: notaphplover Date: Mon, 10 Mar 2025 01:44:27 +0100 Subject: [PATCH] Add binding related types (#1751) * feat: add binding related types * docs: update changelog --- CHANGELOG.md | 2 ++ src/index.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e33e19a5..722007c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added +- Added `BindingActivation`. +- Added `BindingDeactivation`. ### Changed diff --git a/src/index.ts b/src/index.ts index 96d0abe1a..0880560cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,9 @@ export { IsBoundOptions, } from '@inversifyjs/container'; export { + BindingActivation, BindingConstraints, + BindingDeactivation, BindingScope, DynamicValueBuilder, Factory,