remove 从列表中移除计时器
remove
类型: MethodDeclaration
所属类: Timer
定义位置: time.ts
描述
从列表中移除计时器
返回值:当前计时器
返回值
类型: this
当前计时器
源代码
位置: 第 223 行
public remove(): this {
    switch (this.mode) {
      case 'scaled':
        Timer.scaledTimers.remove(this)
        return this
      case 'raw':
        Timer.rawTimers.remove(this)
        return this
    }
  }
文档生成时间:2025/7/21 20:53:39