2023-04-29 09:29:51 +00:00
|
|
|
type AppInfo = {
|
2023-05-13 15:08:01 +00:00
|
|
|
id: string,
|
|
|
|
src?: string,
|
|
|
|
img?: string,
|
|
|
|
icon?: string,
|
2023-04-29 09:29:51 +00:00
|
|
|
name: string,
|
|
|
|
type: AppType,
|
2023-05-13 15:08:01 +00:00
|
|
|
version: string,
|
|
|
|
tags: string,
|
|
|
|
files: string,
|
|
|
|
data?: string,
|
2023-04-29 09:29:51 +00:00
|
|
|
sortorder?: number,
|
|
|
|
};
|
|
|
|
|
|
|
|
type AppType = "app" | "clock" | "widget" | "module" | "bootloader" |
|
2023-05-13 15:08:01 +00:00
|
|
|
"settings" | "clkinfo" | "RAM" | "launch" | "textinput" | "scheduler" |
|
|
|
|
"notify" | "locale";
|