summaryrefslogtreecommitdiff
path: root/extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 01:05:59 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 01:05:59 -0400
commit7f28abee0312c675e11e35ca9f2101ab2ef17c07 (patch)
treea5e83c40b42894f8cd50a4f76845e33715240394 /extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts
parentf82ccddd3bc10093fea497ab15e8c1ae132ce66d (diff)
downloadsncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.tar.gz
sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.tar.bz2
sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.zip
notebook -> gui
Diffstat (limited to 'extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts')
-rw-r--r--extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts b/extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts
deleted file mode 100644
index 75fd7373..00000000
--- a/extension/react-app/src/hooks/ContinueNotebookClientProtocol.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-abstract class AbstractContinueNotebookClientProtocol {
- abstract sendMainInput(input: string): void;
-
- abstract reverseToIndex(index: number): void;
-
- abstract sendRefinementInput(input: string, index: number): void;
-
- abstract sendStepUserInput(input: string, index: number): void;
-
- abstract onStateUpdate(state: any): void;
-}
-
-export default AbstractContinueNotebookClientProtocol;