Made tags, type, and version optional

pull/2752/head
Bruce Blore 2023-05-13 14:28:10 -07:00
parent 96389aa255
commit 06a7adca30
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@ type AppInfo = {
img?: string, img?: string,
icon?: string, icon?: string,
name: string, name: string,
type: AppType, type?: AppType,
version: string, version?: string,
tags: string, tags?: string,
files: string, files: string,
data?: string, data?: string,
sortorder?: number, sortorder?: number,