gitbutler/apps/desktop/src/app.d.ts
estib df57f8bc28 Augment the project page errors with codes
Add the error code to the project page error for a better, more granular error handling
2024-09-02 16:39:45 +02:00

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;
}
}