summaryrefslogtreecommitdiff
path: root/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-05 01:04:33 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-05 01:04:33 -0700
commit8f080c4d2447e3eb66db448c08324ee71614709e (patch)
tree24d45ee5b65637469ecbf685478d32ddbf8f0d90 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
parent2b8f7b079bf6335b53c0d08f1c639bb316d5fc4c (diff)
downloadsncontinue-8f080c4d2447e3eb66db448c08324ee71614709e.tar.gz
sncontinue-8f080c4d2447e3eb66db448c08324ee71614709e.tar.bz2
sncontinue-8f080c4d2447e3eb66db448c08324ee71614709e.zip
highlighted code improvements
Diffstat (limited to 'extension/react-app/src/hooks/ContinueGUIClientProtocol.ts')
-rw-r--r--extension/react-app/src/hooks/ContinueGUIClientProtocol.ts2
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;