This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const reflectObj = {}; | |
function Injectable() { | |
return function (target: any) { | |
console.log('Injectable'); | |
Reflect.defineMetadata('injectable', true, target); | |
reflectObj[target] = true; | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface Type<T = any> { | |
new (...args: any[]): T; | |
} | |
class Container { | |
public dependencies = []; | |
public init(deps: any[]) { | |
deps.map((target) => { | |
const isInjectable = Reflect.getMetadata('injectable', target); |
OlderNewer