mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-26 21:18:45 -06:00
22 lines
455 B
TypeScript
22 lines
455 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
|
|
},
|
|
playerArtwork: {
|
|
fillHeight: 500,
|
|
fillWidth: 500,
|
|
format: ImageFormat.Jpg
|
|
}
|
|
} |