feat(observability): add App.Error interface with errorId to app.d.ts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-17 09:40:12 +02:00
parent e61409773e
commit 97aa372094

View File

@@ -26,6 +26,11 @@ declare global {
interface PageData {
user?: User; // Available in $page.data.user
}
interface Error {
message: string;
errorId?: string;
}
}
}