This commit is contained in:
2024-06-30 23:27:06 +02:00
parent 37460a9497
commit f0c5c81e86
5 changed files with 102 additions and 59 deletions

View File

@ -64,3 +64,10 @@ export type Chat = {
message: string
createdAt: Date
}
export type Asset = {
key: string
value: string
group: 'tiles' | 'objects' | 'sound' | 'music' | 'ui' | 'font' | 'other'
type: 'base64' | 'link'
}