import InjectionType from '../enum/InjectorType'; import Class from './Class'; export default interface ClassInjectable { create: Class; type: InjectionType; instance?: T; }