Add AppInfo type
parent
dea770cb91
commit
df50a4dd7b
|
|
@ -0,0 +1,12 @@
|
||||||
|
type AppInfo = {
|
||||||
|
src: string,
|
||||||
|
img: string,
|
||||||
|
icon: string,
|
||||||
|
name: string,
|
||||||
|
type: AppType,
|
||||||
|
sortorder?: number,
|
||||||
|
};
|
||||||
|
|
||||||
|
type AppType = "app" | "clock" | "widget" | "module" | "bootloader" |
|
||||||
|
"settings" | "clkinfo" | "RAM" | "launch" | "textinput" | "scheduler" |
|
||||||
|
"notify" | "locale";
|
||||||
Loading…
Reference in New Issue