UNPKG

igdb-types

Version:

TypeScript type definitions for IGDB API responses

21 lines (20 loc) 606 B
/** * Represents theme information. * * Request Path: https://api.igdb.com/v4/themes * Description: Video game themes. */ export type Theme = { /** UUID hash of the object. */ checksum: string; /** Date this was initially added to the IGDB database. */ created_at: number | Date; /** The name of the theme. */ name: string; /** A url-safe, unique, lower-case version of the name. */ slug: string; /** The last date this entry was updated in the IGDB database. */ updated_at: number | Date; /** The website address (URL) of the item. */ url?: string; };