igdb-types
Version:
TypeScript type definitions for IGDB API responses
23 lines (22 loc) • 712 B
TypeScript
/**
* Represents game engine logo information.
*
* Request Path: https://api.igdb.com/v4/game_engine_logos
* Description: The logos of game engines.
*/
export type GameEngineLogo = {
/** 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;
};