diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-18 14:02:03 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-18 14:02:03 -0700 |
commit | 54c975f1454b353590435c262d558a71e6013865 (patch) | |
tree | c6b0cdcf8b0c16c09800240c7355f9a2ac9f6eb3 /extension/schema/History.d.ts | |
parent | 7d56cc5ed9b07da49d746fc02e612602d80d35d9 (diff) | |
download | sncontinue-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/History.d.ts')
-rw-r--r-- | extension/schema/History.d.ts | 2 |
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 { |