diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-04 11:58:02 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-04 11:58:02 -0700 |
commit | 142e2043b82fbf46af3841f9b07613ab8484dd65 (patch) | |
tree | 418ba409f34a01a7374e62287d9fe2c34886fd93 /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | |
parent | 2192f332a7f40ad07dd039d512d68eb89ed3fb38 (diff) | |
download | sncontinue-142e2043b82fbf46af3841f9b07613ab8484dd65.tar.gz sncontinue-142e2043b82fbf46af3841f9b07613ab8484dd65.tar.bz2 sncontinue-142e2043b82fbf46af3841f9b07613ab8484dd65.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.ts | 2 |
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; |