* Send a command to a window (unsafe, no checks) * @param {string} name window * @param {string} command * @param {...any} args
(name, command, ...args)
| 543 | * @param {...any} args |
| 544 | */ |
| 545 | sendToWindow(name, command, ...args) { |
| 546 | this.win[name].webContents.send(command, ...args) |
| 547 | } |
| 548 | |
| 549 | /** |
| 550 | * Send a command to a window if it is valid |
no outgoing calls
no test coverage detected