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 = {
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";