BangleApps/typescript/types/info.d.ts

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";