diff options
Diffstat (limited to 'ui/src/state/models.ts')
| -rw-r--r-- | ui/src/state/models.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/src/state/models.ts b/ui/src/state/models.ts index c1d97f4b..4ca79006 100644 --- a/ui/src/state/models.ts +++ b/ui/src/state/models.ts @@ -18,12 +18,16 @@ export interface HomeInfo { historyCount: number; recordCount: number; lastSyncTime: Date | null; + recentCommands: ShellHistory[]; + topCommands: ShellHistory[]; } export const DefaultHomeInfo: HomeInfo = { historyCount: 0, recordCount: 0, lastSyncTime: new Date(), + recentCommands: [], + topCommands: [], }; export class ShellHistory { |
