(relPath: string)
| 335 | } |
| 336 | |
| 337 | function queueFloatingNoteRequest(relPath: string): void { |
| 338 | pendingFloatingNoteRequests.push(relPath) |
| 339 | if (app.isReady()) void flushPendingFloatingNoteRequests() |
| 340 | } |
| 341 | |
| 342 | async function flushPendingFloatingNoteRequests(): Promise<void> { |
| 343 | if (flushingFloatingNoteRequests || pendingFloatingNoteRequests.length === 0) return |
no test coverage detected