(c: PastedContent)
| 365 | * ID list stay in sync. |
| 366 | */ |
| 367 | export function isValidImagePaste(c: PastedContent): boolean { |
| 368 | return c.type === 'image' && c.content.length > 0 |
| 369 | } |
| 370 | |
| 371 | /** Extract image paste IDs from a QueuedCommand's pastedContents. */ |
| 372 | export function getImagePasteIds( |
nothing calls this directly
no outgoing calls
no test coverage detected