mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-30 07:29:33 -05:00
29 lines
609 B
TypeScript
29 lines
609 B
TypeScript
import { ImageFormat } from "@jellyfin/sdk/lib/generated-client/models";
|
|
|
|
export const queryConfig = {
|
|
limits: {
|
|
recents: 50
|
|
},
|
|
images: {
|
|
fillHeight: 300,
|
|
fillWidth: 300,
|
|
format: ImageFormat.Jpg
|
|
},
|
|
logos: {
|
|
fillHeight: 25,
|
|
fillWidth: 100,
|
|
format: ImageFormat.Png
|
|
},
|
|
miniplayerArtwork: {
|
|
height: 100,
|
|
width: 100,
|
|
fillHeight: 100,
|
|
fillWidth: 100,
|
|
format: ImageFormat.Jpg
|
|
},
|
|
playerArtwork: {
|
|
fillHeight: 500,
|
|
fillWidth: 500,
|
|
format: ImageFormat.Jpg
|
|
}
|
|
} |