declare enum InjectionType {
    None = 0,
    Constructor = 1,
    Method = 2,
    Property = 3
}
export default InjectionType;
