Interface ListSort

interface ListSort {
    ignorearticle?: boolean;
    method?:
        | "path"
        | "rating"
        | "title"
        | "artist"
        | "genre"
        | "year"
        | "album"
        | "track"
        | "playcount"
        | "originaltitle"
        | "lastplayed"
        | "studio"
        | "mpaa"
        | "country"
        | "productioncode"
        | "top250"
        | "votes"
        | "season"
        | "episode"
        | "file"
        | "watchedepisodes"
        | "sorttitle"
        | "dateadded"
        | "size"
        | "totaldiscs"
        | "originaldate"
        | "bpm"
        | "bitrate"
        | "userrating"
        | "none"
        | "label"
        | "date"
        | "drivetype"
        | "time"
        | "albumtype"
        | "programcount"
        | "playlist"
        | "totalepisodes"
        | "tvshowstatus"
        | "tvshowtitle"
        | "listeners"
        | "random";
    order?: "ascending"
    | "descending";
    useartistsortname?: boolean;
}

Properties

ignorearticle?: boolean
method?:
    | "path"
    | "rating"
    | "title"
    | "artist"
    | "genre"
    | "year"
    | "album"
    | "track"
    | "playcount"
    | "originaltitle"
    | "lastplayed"
    | "studio"
    | "mpaa"
    | "country"
    | "productioncode"
    | "top250"
    | "votes"
    | "season"
    | "episode"
    | "file"
    | "watchedepisodes"
    | "sorttitle"
    | "dateadded"
    | "size"
    | "totaldiscs"
    | "originaldate"
    | "bpm"
    | "bitrate"
    | "userrating"
    | "none"
    | "label"
    | "date"
    | "drivetype"
    | "time"
    | "albumtype"
    | "programcount"
    | "playlist"
    | "totalepisodes"
    | "tvshowstatus"
    | "tvshowtitle"
    | "listeners"
    | "random"
order?: "ascending" | "descending"
useartistsortname?: boolean