UNPKG

servicemanager

Version:

Most basic implementation of dependency injection container for JavaScript

8 lines (7 loc) 172 B
import ServiceType from './serviceType'; interface ServiceTarget { target: any; type: ServiceType; tags: Array<string>; } export { ServiceTarget as default, };