| 11 | } |
| 12 | |
| 13 | export class Queue<T> { |
| 14 | private onSettles: Array<(res: any, error: any) => void> = [] |
| 15 | private onErrors: Array<(error: any, task: () => Promise<any>) => void> = [] |
| 16 | private onSuccesses: Array<(result: any, task: () => Promise<any>) => void> = |
nothing calls this directly
no outgoing calls
no test coverage detected