BangleApps/typescript/types/info.d.ts

18 lines
378 B
TypeScript
Raw Normal View History

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,
2023-05-13 21:28:10 +00:00
type?: AppType,
version?: string,
tags?: string,
2023-05-13 15:08:01 +00:00
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";