summaryrefslogtreecommitdiff
path: root/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-07-02 20:15:49 -0700
committerGitHub <noreply@github.com>2023-07-02 20:15:49 -0700
commit9831ac76fbced2f18ec15642eb31d3854af56e67 (patch)
treec2682170eb8f8a81fd494fce7bb8a435dcfa9829 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
parentc41314b095648e6b3bcecc84a20354574db8379d (diff)
parent38d0c1ad7955b43c1765ac8faea723028a90201e (diff)
downloadsncontinue-9831ac76fbced2f18ec15642eb31d3854af56e67.tar.gz
sncontinue-9831ac76fbced2f18ec15642eb31d3854af56e67.tar.bz2
sncontinue-9831ac76fbced2f18ec15642eb31d3854af56e67.zip
Merge pull request #170 from continuedev/explicit-context
Explicit context
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 3d8e0a38..228e9a53 100644
--- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
+++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
@@ -20,6 +20,8 @@ abstract class AbstractContinueGUIClientProtocol {
abstract retryAtIndex(index: number): void;
abstract deleteAtIndex(index: number): void;
+
+ abstract deleteContextItemAtIndex(index: number): void;
}
export default AbstractContinueGUIClientProtocol;