(scope: WorkspaceScope, page: PageRecord)
| 333 | } |
| 334 | |
| 335 | export function queuePagePut(scope: WorkspaceScope, page: PageRecord): void { |
| 336 | getPageFileQueue(scope).enqueue(page.id, { page }) |
| 337 | } |
| 338 | |
| 339 | export function queuePageDelete(scope: WorkspaceScope, pageId: string): void { |
| 340 | getPageFileQueue(scope).enqueue(pageId, { deletePage: true }) |
no test coverage detected