From 06a7adca30dedc09369b819512f4a9079a39ffcf Mon Sep 17 00:00:00 2001 From: Bruce Blore Date: Sat, 13 May 2023 14:28:10 -0700 Subject: [PATCH] Made tags, type, and version optional --- typescript/types/info.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typescript/types/info.d.ts b/typescript/types/info.d.ts index 004c3371d..c305b0261 100644 --- a/typescript/types/info.d.ts +++ b/typescript/types/info.d.ts @@ -4,9 +4,9 @@ type AppInfo = { img?: string, icon?: string, name: string, - type: AppType, - version: string, - tags: string, + type?: AppType, + version?: string, + tags?: string, files: string, data?: string, sortorder?: number,