Gitea Test

First Push to giTea
This commit is contained in:
2026-05-14 10:41:14 +02:00
parent 90de2c1674
commit 89fd54b3dc
10 changed files with 417 additions and 0 deletions
+37
View File
@@ -142,3 +142,40 @@ export interface HeadscaleData {
online: number
nodes: HeadscaleNode[]
}
export interface JellyfinSession {
user: string
title: string
subtitle: string | null
type: string
progress: number | null
paused: boolean
client: string
}
export interface JellyfinData {
sessions: JellyfinSession[]
library: { movies: number; episodes: number; songs: number; albums: number }
}
export interface NavidromeNowPlaying {
user: string
title: string
artist: string
album: string
}
export interface NavidromeData {
artistCount: number
albumCount: number
songCount: number
nowPlaying: NavidromeNowPlaying[]
}
export interface RommPlatform {
name: string
romCount: number | null
}
export interface RommData {
platformCount: number
romCount: number
platforms: RommPlatform[]
}