(editor: Editable, open: boolean)
| 81 | |
| 82 | export const ContextMenu = { |
| 83 | setOpen(editor: Editable, open: boolean) { |
| 84 | const store = getStore(editor) |
| 85 | store.setState(() => ({ open })) |
| 86 | }, |
| 87 | |
| 88 | setItems(editor: Editable, items: ContextMenuItem[]) { |
| 89 | const store = getStore(editor) |
no test coverage detected
searching dependent graphs…