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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user