error logging

This commit is contained in:
mrjvs
2023-09-06 17:04:43 +02:00
parent 637b3b635a
commit d325dab162
3 changed files with 5 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ export type UpdateEventStatus = 'success' | 'failure' | 'notfound' | 'pending';
export type UpdateEvent = {
percentage: number;
status: UpdateEventStatus;
error?: unknown;
};
export type InitEvent = {