UNPKG

igdb-types

Version:

TypeScript type definitions for IGDB API responses

18 lines (17 loc) 536 B
import { WebsiteCategoryEnum } from "../enums"; /** * Represents platform website information. * * Request Path: https://api.igdb.com/v4/platform_websites * Description: The main website for the platform. */ export type PlatformWebsite = { /** The service this website links to. */ category?: number | WebsiteCategoryEnum; /** UUID hash of the object. */ checksum: string; /** Indicates if the website is trusted. */ trusted?: boolean; /** The website address (URL) of the item. */ url?: string; };