add missing 'date' to log interface

This commit is contained in:
2024-01-01 16:15:02 -07:00
parent 920c7bb612
commit 15ccd2394f
2 changed files with 2 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
export interface Log {
date: string;
message: string;
}