diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-12 13:18:16 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-12 13:18:16 -0700 |
commit | a13cb867ec0ea831d78e6d928463bd256babced5 (patch) | |
tree | a7f16db0f260bc93196fc67e885cbd9054fe91f7 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | |
parent | 0851b826c069cbdd1706a4107feb90f0ffa13129 (diff) | |
download | sncontinue-a13cb867ec0ea831d78e6d928463bd256babced5.tar.gz sncontinue-a13cb867ec0ea831d78e6d928463bd256babced5.tar.bz2 sncontinue-a13cb867ec0ea831d78e6d928463bd256babced5.zip |
clear history and delete step buttons
Diffstat (limited to 'extension/react-app/src/hooks/ContinueGUIClientProtocol.ts')
-rw-r--r-- | extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts index 18a91de7..71303c70 100644 --- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts +++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts @@ -8,6 +8,12 @@ abstract class AbstractContinueGUIClientProtocol { abstract sendStepUserInput(input: string, index: number): void; abstract onStateUpdate(state: any): void; + + abstract sendClear(): void; + + abstract retryAtIndex(index: number): void; + + abstract deleteAtIndex(index: number): void; } export default AbstractContinueGUIClientProtocol; |