From 5a594e083ec6dc2efcb9372cbad719002afa0bec Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Thu, 5 Jun 2025 04:12:25 +0000 Subject: [PATCH] fix default value --- src/global.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/global.d.ts b/src/global.d.ts index 323101468..5ce13e6be 100644 --- a/src/global.d.ts +++ b/src/global.d.ts @@ -3,7 +3,7 @@ interface Window { } namespace App { interface Error { - type: string, - resource: ?string = '', + type: string = 'unknown', + resource: string = 'project', } } \ No newline at end of file