For example, If I have the following chatbot:

In the chatbot, I am using the variable with the "1min" value inside the trigger event. However, If I want to cancel the timer once it has been started, there is no way to do so (as far as I have explored promptchat), and after the completion of the specified time, the part of the chatbot related to the trigger will get executed, regardless of what part of the chatbot is being executed. In JavaScript, we can use clearTimeout() to cancel setTimeout() based on the returned id. But what is the equivalent of or similar to clearTimeout() in prompt chat to cancel the timer of a trigger event to stop the associated part of the chatbot from being executed?