🦴 Adds result service

This commit is contained in:
Rune Harlyk
2024-02-23 12:07:01 +01:00
parent 22b54261f0
commit 2b810cba7b
3 changed files with 31 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export * from './logging-store';
+11
View File
@@ -0,0 +1,11 @@
import { writable, type Writable } from 'svelte/store';
export interface errorLog {
message: unknown;
tag?: string;
exception?: unknown;
}
export const latestErrorLog: Writable<errorLog> = writable();
export const errorLogs: Writable<errorLog[]> = writable([]);