Added some fields to AppInfo

pull/2752/head
Bruce Blore 2023-05-13 08:08:01 -07:00
parent 4dfdc8ab63
commit 50789ad62c
1 changed files with 10 additions and 5 deletions

View File

@ -1,12 +1,17 @@
type AppInfo = { type AppInfo = {
src: string, id: string,
img: string, src?: string,
icon: string, img?: string,
icon?: string,
name: string, name: string,
type: AppType, type: AppType,
version: string,
tags: string,
files: string,
data?: string,
sortorder?: number, sortorder?: number,
}; };
type AppType = "app" | "clock" | "widget" | "module" | "bootloader" | type AppType = "app" | "clock" | "widget" | "module" | "bootloader" |
"settings" | "clkinfo" | "RAM" | "launch" | "textinput" | "scheduler" | "settings" | "clkinfo" | "RAM" | "launch" | "textinput" | "scheduler" |
"notify" | "locale"; "notify" | "locale";