| 7 | } |
| 8 | |
| 9 | interface RichClipboardLike { |
| 10 | write(items: ClipboardItem[]): Promise<void>; |
| 11 | } |
| 12 | |
| 13 | type ClipboardNotification = (type: 'info' | 'warning', message: string, duration?: number) => void; |
| 14 | type ClipboardItemFactory = (items: Record<string, Blob>) => ClipboardItem; |
no outgoing calls
no test coverage detected