mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 04:47:42 +03:00
df57f8bc28
Add the error code to the project page error for a better, more granular error handling
13 lines
225 B
TypeScript
13 lines
225 B
TypeScript
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
|
|
declare module 'tinykeys';
|
|
|
|
declare namespace App {
|
|
interface Error {
|
|
message: string;
|
|
errorId?: string;
|
|
errorCode?: string;
|
|
}
|
|
}
|