UNPKG

igdb-types

Version:

TypeScript type definitions for IGDB API responses

23 lines (22 loc) 714 B
/** * Represents company logo information. * * Request Path: https://api.igdb.com/v4/company_logos * Description: The logos of developers and publishers. */ export type CompanyLogo = { /** 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; };