igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
21 lines (20 loc) • 576 B
TypeScript
import { Identifiable } from "../utility";
export interface PlatformFamily extends Identifiable {
name: string;
slug: string;
}
export declare enum PlatformFamilyFields {
"ID" = "id",
"CHECKSUM" = "checksum",
"NAME" = "name",
"SLUG" = "slug"
}
/**
* Referenced from [Platform]({@link Platform.ts}) - platform_family field
*/
export declare enum PlatformFamilyReferenceFields {
"ID" = "platform_family.id",
"CHECKSUM" = "platform_family.checksum",
"NAME" = "platform_family.name",
"SLUG" = "platform_family.slug"
}