Move LibraryItem type

This commit is contained in:
jeffvli 2023-01-05 21:59:07 -08:00
parent 3070586104
commit d1dfbaedaa
27 changed files with 68 additions and 56 deletions

View file

@ -45,6 +45,14 @@ import {
SSGenreList,
} from '/@/renderer/api/subsonic.types';
export enum LibraryItem {
ALBUM = 'album',
ALBUM_ARTIST = 'albumArtist',
ARTIST = 'artist',
PLAYLIST = 'playlist',
SONG = 'song',
}
export enum SortOrder {
ASC = 'ASC',
DESC = 'DESC',