(snippetId: number, contentId: number)
| 104 | } |
| 105 | |
| 106 | function getPendingContentUpdate(snippetId: number, contentId: number) { |
| 107 | const key = getContentUpdateKey(snippetId, contentId) |
| 108 | return updateContentQueue.value.get(key)?.data |
| 109 | } |
| 110 | |
| 111 | function isContentUpdateBusy(snippetId: number, contentId: number) { |
| 112 | const key = getContentUpdateKey(snippetId, contentId) |
nothing calls this directly
no test coverage detected