summaryrefslogtreecommitdiff
path: root/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-04 11:58:02 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-04 11:58:02 -0700
commit2a524193d26ffca7ef62445f2069773e106f68a8 (patch)
tree79183b04923cb1e2eb361a2053cde1004027b833 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
parent77c39db46ca0b66ad601e55f9457d5a78ade8dfc (diff)
downloadsncontinue-2a524193d26ffca7ef62445f2069773e106f68a8.tar.gz
sncontinue-2a524193d26ffca7ef62445f2069773e106f68a8.tar.bz2
sncontinue-2a524193d26ffca7ef62445f2069773e106f68a8.zip
3.8 compatibility and deleting context all at once
Diffstat (limited to 'extension/react-app/src/hooks/ContinueGUIClientProtocol.ts')
-rw-r--r--extension/react-app/src/hooks/ContinueGUIClientProtocol.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
index 228e9a53..96ea7ab3 100644
--- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
+++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
@@ -21,7 +21,7 @@ abstract class AbstractContinueGUIClientProtocol {
abstract deleteAtIndex(index: number): void;
- abstract deleteContextItemAtIndex(index: number): void;
+ abstract deleteContextAtIndices(indices: number[]): void;
}
export default AbstractContinueGUIClientProtocol;