mirror of https://github.com/espruino/BangleApps
18 lines
378 B
TypeScript
18 lines
378 B
TypeScript
type AppInfo = {
|
|
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";
|