UNPKG

154 BTypeScriptView Raw
1import { ServiceKeyType } from './ServiceManagerConfigInterface';
2export interface ServiceManagerInterface {
3 get<T>(Service: ServiceKeyType<T>): T;
4}