Some progress on porting frontend
Some checks failed
/ docker (push) Has been cancelled

This commit is contained in:
Melody Becker 2025-07-10 20:23:59 +02:00
parent 59373c6380
commit 6515bda730
Signed by: mstar
SSH key fingerprint: SHA256:vkXfS9FG2pVNVfvDrzd1VW9n8VJzqqdKQGljxxX8uK8
18 changed files with 728 additions and 39 deletions

View file

@ -0,0 +1,10 @@
import type { MediaMetadata } from '@/stores/media.ts'
export interface User {
username: string
displayName: string
description: string
profilePicture?: MediaMetadata
bannerPicture?: MediaMetadata
backgroundPicture?: MediaMetadata
}