Refactor Dependency Injection classes to use named imports for Type and interfaces. Change export statements from default to named exports for DependencyManager, DependencyProvider, IDependencyManager, IDependencyProvider, and NamedType classes.

This commit is contained in:
2025-10-25 17:39:27 -04:00
parent e73c6e75e9
commit 0de4b9314a
7 changed files with 24 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
import Type from './Type';
import {Type} from './Type';
export default interface IDependencyProvider {
export interface IDependencyProvider {
canProvide(type: Type): boolean;
provide(type: Type): Promise<unknown>;
toString(): string;