(input: string)
| 142 | } |
| 143 | |
| 144 | function swarmModeSubcommand(input: string): boolean | undefined { |
| 145 | const command = input.toLowerCase(); |
| 146 | if (command === 'on') return true; |
| 147 | if (command === 'off') return false; |
| 148 | return undefined; |
| 149 | } |
| 150 | |
| 151 | function renderSwarmModeMarker(host: SlashCommandHost, state: SwarmModeMarkerState): void { |
| 152 | host.state.transcriptContainer.addChild( |
no outgoing calls
no test coverage detected