summaryrefslogtreecommitdiff
path: root/extension/schema/HistoryNode.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
commit54c975f1454b353590435c262d558a71e6013865 (patch)
treec6b0cdcf8b0c16c09800240c7355f9a2ac9f6eb3 /extension/schema/HistoryNode.d.ts
parent7d56cc5ed9b07da49d746fc02e612602d80d35d9 (diff)
downloadsncontinue-54c975f1454b353590435c262d558a71e6013865.tar.gz
sncontinue-54c975f1454b353590435c262d558a71e6013865.tar.bz2
sncontinue-54c975f1454b353590435c262d558a71e6013865.zip
error handle on invalid config file, don't immediately show loading message
Diffstat (limited to 'extension/schema/HistoryNode.d.ts')
-rw-r--r--extension/schema/HistoryNode.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/schema/HistoryNode.d.ts b/extension/schema/HistoryNode.d.ts
index bc77be89..5ad32061 100644
--- a/extension/schema/HistoryNode.d.ts
+++ b/extension/schema/HistoryNode.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[];
/**
* A point in history, a list of which make up History
@@ -31,6 +32,7 @@ export interface HistoryNode1 {
depth: Depth;
deleted?: Deleted;
active?: Active;
+ logs?: Logs;
[k: string]: unknown;
}
export interface Step {