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:
5
frontend/src/app.d.ts
vendored
5
frontend/src/app.d.ts
vendored
@@ -26,6 +26,11 @@ declare global {
|
|||||||
interface PageData {
|
interface PageData {
|
||||||
user?: User; // Available in $page.data.user
|
user?: User; // Available in $page.data.user
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface Error {
|
||||||
|
message: string;
|
||||||
|
errorId?: string;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user