Added some fields to AppInfo

pull/2752/head
Bruce Blore 2023-05-13 08:08:01 -07:00
parent 4dfdc8ab63
commit 50789ad62c
1 changed files with 10 additions and 5 deletions

View File

@ -1,9 +1,14 @@
type AppInfo = {
src: string,
img: string,
icon: string,
id: string,
src?: string,
img?: string,
icon?: string,
name: string,
type: AppType,
version: string,
tags: string,
files: string,
data?: string,
sortorder?: number,
};