如何使Typescript变量引用类

时间:2019-01-31 08:25:39

标签: javascript typescript intellij-idea

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;

0 个答案:

没有答案