This commit is contained in:
Mckay Wrigley
2023-04-04 09:39:37 -06:00
parent 6156a2702f
commit d570c8b1ed
19 changed files with 1685 additions and 267 deletions
+3
View File
@@ -1,5 +1,6 @@
import { Conversation } from './chat';
import { Folder } from './folder';
import { PluginKey } from './plugin';
import { Prompt } from './prompt';
// keep track of local storage schema
@@ -15,4 +16,6 @@ export interface LocalStorage {
// added showChatbar and showPromptbar (3/26/23)
showChatbar: boolean;
showPromptbar: boolean;
// added plugin keys (4/3/23)
pluginKeys: PluginKey[];
}