From 50789ad62c8549b74a8c991abac3af27792766af Mon Sep 17 00:00:00 2001 From: Bruce Blore Date: Sat, 13 May 2023 08:08:01 -0700 Subject: [PATCH] Added some fields to AppInfo --- typescript/types/info.d.ts | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/typescript/types/info.d.ts b/typescript/types/info.d.ts index 41dec8578..004c3371d 100644 --- a/typescript/types/info.d.ts +++ b/typescript/types/info.d.ts @@ -1,12 +1,17 @@ type AppInfo = { - src: string, - img: string, - icon: string, + id: string, + src?: string, + img?: string, + icon?: string, name: string, type: AppType, + version: string, + tags: string, + files: string, + data?: string, sortorder?: number, }; type AppType = "app" | "clock" | "widget" | "module" | "bootloader" | - "settings" | "clkinfo" | "RAM" | "launch" | "textinput" | "scheduler" | - "notify" | "locale"; + "settings" | "clkinfo" | "RAM" | "launch" | "textinput" | "scheduler" | + "notify" | "locale";