30 lines
445 B
TypeScript
Raw Normal View History

2023-07-04 20:53:02 -04:00
export interface MinifiedCategory {
image: string
id: string
name: string
displayName: string
}
export interface MinifiedStreamer {
name: string
login: string
pfp: string
colorHex: string
}
export interface Video {
preview: string
game: MinifiedCategory
duration: number
title: string
publishedAt: string
views: number
tag: string[]
streamer: MinifiedStreamer
}
export interface Shelve {
title: string
videos: Video[]
}