| 1 | type Task<T = void> = () => Promise<T>; |
| 2 | |
| 3 | export default class TaskQueue { |
| 4 | private tasks: Task[] = []; |
| 5 | private running: Promise<void> | undefined; |
| 6 | private intervals: NodeJS.Timer[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected