log webview

This commit is contained in:
2025-03-20 22:47:01 +01:00
parent 9bace8d8c5
commit 67c653fa8b
3 changed files with 85 additions and 19 deletions

View File

@@ -1,3 +1,21 @@
interface LogArray extends Array<LogEntry>{}
interface LogEntry {
timestamp: string,
message_id: number,
a: number,
b: number,
txt_short: string,
txt_long: string
}
interface LogLocalisation extends Array<LogLocalisationEntry>{}
interface LogLocalisationEntry {
msg_type: string,
message: string
}
interface BackupHeader {
timestamp: string,
size: number