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
commitf495205ad623162b6a20ddb409e70b0ba5c07214 (patch)
treeff66bf5b646d238fed72e8a785915574fac8e058 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
parent1e6d9c23053c0ea96ca0c79e174d5551aae2a6dc (diff)
parent28e4da39c1f7056b99dca89e6959a11b86202886 (diff)
downloadsncontinue-f495205ad623162b6a20ddb409e70b0ba5c07214.tar.gz
sncontinue-f495205ad623162b6a20ddb409e70b0ba5c07214.tar.bz2
sncontinue-f495205ad623162b6a20ddb409e70b0ba5c07214.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;
}