mirror of https://github.com/espruino/BangleApps
Added some fields to AppInfo
parent
4dfdc8ab63
commit
50789ad62c
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue