diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-05 01:04:33 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-05 01:04:33 -0700 |
commit | 36f3845a18ed65ff6784b99cb34d9f6c4a7e0143 (patch) | |
tree | 1cf0c19438129b5fd6ba802da3397f3514c35ec4 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | |
parent | bf34e1d6a01214a6977a2932b4ee2b413d524957 (diff) | |
download | sncontinue-36f3845a18ed65ff6784b99cb34d9f6c4a7e0143.tar.gz sncontinue-36f3845a18ed65ff6784b99cb34d9f6c4a7e0143.tar.bz2 sncontinue-36f3845a18ed65ff6784b99cb34d9f6c4a7e0143.zip |
highlighted code improvements
Diffstat (limited to 'extension/react-app/src/hooks/ContinueGUIClientProtocol.ts')
-rw-r--r-- | extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts index 96ea7ab3..f123bb2b 100644 --- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts +++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts @@ -22,6 +22,8 @@ abstract class AbstractContinueGUIClientProtocol { abstract deleteAtIndex(index: number): void; abstract deleteContextAtIndices(indices: number[]): void; + + abstract toggleAddingHighlightedCode(): void; } export default AbstractContinueGUIClientProtocol; |