Skip to content

Commit

Permalink
- instantiateValueUnmapped moved to immutable interface
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyFlasher committed Sep 23, 2023
1 parent 985ff4c commit 3aaced9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "domwires",
"version": "0.9.125",
"version": "0.9.126",
"description": "Flexible and extensible MVC framework",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,7 @@
"dotenv": "16.0.3",
"eslint": "8.26.0",
"eslint-plugin-no-type-assertion": "1.3.0",
"mocha": "10.0.0",
"mocha": "10.2.0",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "4.7.4",
Expand Down
4 changes: 2 additions & 2 deletions src/com/domwires/core/factory/IFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ export interface IFactoryImmutable extends IDisposableImmutable
{
getInstance<T>(type: Type<T>, name?: string, ignorePool?: boolean): T;

instantiateValueUnmapped<T>(type: Type<T>): T;

hasTypeMapping<T>(type: Type<T>, name?: string): boolean;

hasValueMapping<T>(type: Type<T>, name?: string): boolean;
Expand All @@ -193,8 +195,6 @@ export interface IFactory extends IFactoryImmutable, IDisposable

unmapFromValue<T>(type: Type<T>, name?: string): IFactory;

instantiateValueUnmapped<T>(type: Type<T>): T;

clear(): IFactory;

registerPool<T>(type: Type<T>, capacity?: number, instantiateNow?: boolean,
Expand Down

0 comments on commit 3aaced9

Please sign in to comment.