import { lazyInject } from './services/container';
class Main implements Main {
@lazyInject("HighlightService")
private highlight_service;
constructor() {
this.highlight_service.init();
}
}
new Main();
我为打字稿使用了依赖项注入程序包,现在我在webstorm上的代码完成被搞砸了,IDE甚至认为所有类都没有使用,因为丢失了引用。
有没有办法将变量指向类? 让我们说
/**
* @Class: "whatever class"
*/
@Injectionstuff
private whatever_service;