summaryrefslogtreecommitdiff
path: root/extension/schema/History.d.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-18 14:02:03 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-18 14:02:03 -0700
commit53ac7b93f456b471eaa7f03e015e2d8c0ef393e5 (patch)
tree7abd90560bd9b237a1b3451256d7cbcbfe4673ac /extension/schema/History.d.ts
parenta7ab1918f8894c5e5f71e31a88a21680e6e1d2dc (diff)
downloadsncontinue-53ac7b93f456b471eaa7f03e015e2d8c0ef393e5.tar.gz
sncontinue-53ac7b93f456b471eaa7f03e015e2d8c0ef393e5.tar.bz2
sncontinue-53ac7b93f456b471eaa7f03e015e2d8c0ef393e5.zip
error handle on invalid config file, don't immediately show loading message
Diffstat (limited to 'extension/schema/History.d.ts')
-rw-r--r--extension/schema/History.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/schema/History.d.ts b/extension/schema/History.d.ts
index 6eb8ad81..90124f4a 100644
--- a/extension/schema/History.d.ts
+++ b/extension/schema/History.d.ts
@@ -21,6 +21,7 @@ export type ManageOwnChatContext = boolean;
export type Depth = number;
export type Deleted = boolean;
export type Active = boolean;
+export type Logs = string[];
export type Timeline = HistoryNode[];
export type CurrentIndex = number;
@@ -41,6 +42,7 @@ export interface HistoryNode {
depth: Depth;
deleted?: Deleted;
active?: Active;
+ logs?: Logs;
[k: string]: unknown;
}
export interface Step {