summaryrefslogtreecommitdiff
path: root/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-06 12:22:20 -0700
committerTy Dunn <ty@tydunn.com>2023-07-06 12:22:20 -0700
commit9017dce91c5adf6d089bd7bc88480a4e1befba65 (patch)
tree63dd7ce9431807118f8999ddeb7bc80904312e6b /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
parent9f32c906023c596a7610ee4d1d6cff9f1201a5dc (diff)
parent1e00942edec9c9aa4c69f2a8be7e43f06df684df (diff)
downloadsncontinue-9017dce91c5adf6d089bd7bc88480a4e1befba65.tar.gz
sncontinue-9017dce91c5adf6d089bd7bc88480a4e1befba65.tar.bz2
sncontinue-9017dce91c5adf6d089bd7bc88480a4e1befba65.zip
Merge branch 'main' of github.com:continuedev/continue
Diffstat (limited to 'extension/react-app/src/hooks/ContinueGUIClientProtocol.ts')
-rw-r--r--extension/react-app/src/hooks/ContinueGUIClientProtocol.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
index f123bb2b..a179c2bf 100644
--- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
+++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
@@ -23,6 +23,10 @@ abstract class AbstractContinueGUIClientProtocol {
abstract deleteContextAtIndices(indices: number[]): void;
+ abstract setEditingAtIndices(indices: number[]): void;
+
+ abstract setPinnedAtIndices(indices: number[]): void;
+
abstract toggleAddingHighlightedCode(): void;
}