Cannot find namespace NodeJS when using NodeJS.Timer in Ionic 2

后端 未结 3 1296
说谎
说谎 2020-12-17 08:03

I am attempting to use some code I found on https://github.com/bevacqua/dragula/issues/289#issuecomment-277143172 to my Ionic project.

When I run the code I get an

3条回答
  •  伪装坚强ぢ
    2020-12-17 08:24

    A quick way to solve this problem is here.

    Basically change setTimeout and clearInterval to window.setTimeout and window.clearInterval, respectively. For example, your onDown becomes:

    onDown(e: Event) {
        this.touchTimeout = window.setTimeout(() => {
            this.draggable = true;
        }, this.dragDelay);
    }
    

    Then, your declaration becomes:

    this.touchTimeout: number | undefined;
    

提交回复
热议问题