mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-10 04:50:33 -06:00
27 lines
560 B
TypeScript
27 lines
560 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
|
|
},
|
|
banners: {
|
|
fillHeight: 300,
|
|
fillWidth: 1000,
|
|
format: ImageFormat.Jpg,
|
|
},
|
|
logos: {
|
|
fillHeight: 50,
|
|
fillWidth: 300,
|
|
format: ImageFormat.Png
|
|
},
|
|
playerArtwork: {
|
|
fillHeight: 750,
|
|
fillWidth: 750,
|
|
format: ImageFormat.Jpg
|
|
}
|
|
} |