fix(web): login error handling (#1322)

This commit is contained in:
Jason Rasmussen 2023-01-13 17:04:59 -05:00 committed by GitHub
parent ba04b753de
commit 5fb3ea465f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 154 additions and 35 deletions

6
web/src/app.d.ts vendored
View file

@ -8,6 +8,12 @@ declare namespace App {
}
// interface Platform {}
interface Error {
message: string;
stack?: string;
code?: string;
}
}
// Source: https://stackoverflow.com/questions/63814432/typescript-typing-of-non-standard-window-event-in-svelte