(commandId: string, params?: Record<string, unknown>)
| 39 | const { value, hidden, disabled, activated, selectionsValue } = useToolbarItemStatus(props); |
| 40 | |
| 41 | const executeCommand = (commandId: string, params?: Record<string, unknown>) => { |
| 42 | layoutService.focus(); |
| 43 | commandService.executeCommand(commandId, params); |
| 44 | }; |
| 45 | |
| 46 | const { tooltip, shortcut, icon, title, label, id, commandId, type, slot, params } = props; |
| 47 |
no test coverage detected