public static replaceQueue(newQueue: typeof Files['queue']) {
this.queue = newQueue
}
public static exec() {
if (!this.queue?.length)
return
const nextItem = this.queue.shift()
// do
setTimeout(this.exec.bind(this))
}
}
а сразу продолжить?
Обсуждают сегодня