(input: { commands?: PluginRuntimeCommands; status?: ReadonlyArray<TuiPluginStatus> })
| 20 | commands, |
| 21 | status, |
| 22 | update(input: { commands?: PluginRuntimeCommands; status?: ReadonlyArray<TuiPluginStatus> }) { |
| 23 | if (input.commands) setCommands(input.commands) |
| 24 | if (input.status) setStatus(input.status) |
| 25 | }, |
| 26 | clear() { |
| 27 | setCommands(emptyCommands) |
| 28 | setStatus([]) |
nothing calls this directly
no test coverage detected