igdb-types
Version:
TypeScript type definitions for IGDB API responses
23 lines (22 loc) • 698 B
TypeScript
/**
* Represents platform logo information.
*
* Request Path: https://api.igdb.com/v4/platform_logos
* Description: Logo for a platform.
*/
export type PlatformLogo = {
/** Indicates if the image has an alpha channel (transparency). */
alpha_channel?: boolean;
/** Indicates if the image is animated. */
animated?: boolean;
/** UUID hash of the object. */
checksum: string;
/** The height of the image in pixels. */
height?: number;
/** The ID of the image used to construct an IGDB image link. */
image_id?: string;
/** The website address (URL) of the item. */
url?: string;
/** The width of the image in pixels. */
width?: number;
};