UNPKG

@tsclean/core

Version:

Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.

10 lines 377 B
import { Type } from "./type"; import { AbstractInterface } from "./abstract"; import { Scope } from "./scope-options"; export interface ApplicationProviderWrapperInterface { moduleKey: string; providerKey: string; type: string | symbol | Type<any> | AbstractInterface<any> | Function; scope?: Scope; } //# sourceMappingURL=application-provider-wrapper.d.ts.map