(event: EventFunction, returnPromise?: boolean)
| 3 | |
| 4 | interface IEventQueue { |
| 5 | push(event: EventFunction, returnPromise?: boolean): Promise<void> | void; |
| 6 | } |
| 7 | |
| 8 | /** Executes a queue of asynchronous functions, one at a time. */ |
no outgoing calls
no test coverage detected