mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-08-08 22:27:44 +02:00
26 lines
430 B
TypeScript
26 lines
430 B
TypeScript
type TitleInfo = {
|
|
titleId?: string;
|
|
xboxTitleId?: string;
|
|
hasTouchSupport?: boolean;
|
|
imageHero?: string;
|
|
};
|
|
|
|
type ApiTitleInfo = {
|
|
titleId: string;
|
|
details: {
|
|
xboxTitleId: string;
|
|
productId: string;
|
|
supportedInputTypes: string[];
|
|
};
|
|
};
|
|
|
|
type ApiCatalogInfo = {
|
|
StoreId: string;
|
|
Image_Hero: {
|
|
URL: string;
|
|
};
|
|
Image_Tile: {
|
|
URL: string;
|
|
};
|
|
};
|