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