mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add drawer to experimental layout
This commit is contained in:
parent
bf62e7a15d
commit
27776d57fc
15 changed files with 977 additions and 11 deletions
16
src/types/collectionType.ts
Normal file
16
src/types/collectionType.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
// NOTE: This should be included in the OpenAPI spec ideally
|
||||
// https://github.com/jellyfin/jellyfin/blob/47290a8c3665f3adb859bda19deb66f438f2e5d0/MediaBrowser.Model/Entities/CollectionType.cs
|
||||
export enum CollectionType {
|
||||
Movies = 'movies',
|
||||
TvShows = 'tvshows',
|
||||
Music = 'music',
|
||||
MusicVideos = 'musicvideos',
|
||||
Trailers = 'trailers',
|
||||
HomeVideos = 'homevideos',
|
||||
BoxSets = 'boxsets',
|
||||
Books = 'books',
|
||||
Photos = 'photos',
|
||||
LiveTv = 'livetv',
|
||||
Playlists = 'playlists',
|
||||
Folders = 'folders'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue