*/
tryHandle(request: ILocalChatCommandRequest): ILocalChatCommandHandling | undefined {
const handling = command.tryHandle(request);
if (handling) {
void this._run(command, handling, request);
return handling;
}
return undefined;
private async _run(command: ILocalChatCommand, handling: ILocalChatCommandHandling, request: ILocalChatCommandRequest): Promise<void> {