diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-02 21:59:11 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-02 21:59:11 -0700 |
commit | 5dda9c10ea8c82a527361949f000b4c22b1bd763 (patch) | |
tree | 53f672d79ae53faaa322d1ff33f5774d1a2073ab /extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | |
parent | 27256e3417078a209d54c709612b13acf648e646 (diff) | |
parent | 9831ac76fbced2f18ec15642eb31d3854af56e67 (diff) | |
download | sncontinue-5dda9c10ea8c82a527361949f000b4c22b1bd763.tar.gz sncontinue-5dda9c10ea8c82a527361949f000b4c22b1bd763.tar.bz2 sncontinue-5dda9c10ea8c82a527361949f000b4c22b1bd763.zip |
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'extension/react-app/src/hooks/ContinueGUIClientProtocol.ts')
-rw-r--r-- | extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | 2 |
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; |