(cb: d.RafCallback)
| 73 | * @param cb the callback to push onto `queuedWriteTasks` |
| 74 | */ |
| 75 | export function writeTask(cb: d.RafCallback): void { |
| 76 | queuedWriteTasks.push(cb); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Push a RequestAnimationFrame callback onto the {@link queuedReadTasks} data structure |
no test coverage detected