refactor(resolve): rename necessary
parameter to isNecessary
for clarity
This commit is contained in:
@@ -15,12 +15,12 @@ export function resolve<T>(identifier: Identifier): T;
|
|||||||
* Resolve a dependency
|
* Resolve a dependency
|
||||||
* @param identifier The identifier used to register the class in the DI container.
|
* @param identifier The identifier used to register the class in the DI container.
|
||||||
* @see {@link Identifier} for more information on identifiers.
|
* @see {@link Identifier} for more information on identifiers.
|
||||||
* @param necessary The dependency is **not** necessary.
|
* @param isNecessary The dependency is **not** necessary.
|
||||||
* @returns The resolved dependency or undefined if the dependency is not found.
|
* @returns The resolved dependency or undefined if the dependency is not found.
|
||||||
*/
|
*/
|
||||||
export function resolve<T>(
|
export function resolve<T>(
|
||||||
identifier: Identifier,
|
identifier: Identifier,
|
||||||
necessary: false,
|
isNecessary: false,
|
||||||
): T | undefined;
|
): T | undefined;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user