igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
25 lines (24 loc) • 821 B
TypeScript
import { Identifiable } from "../utility";
export interface AgeRatingContentDescription extends Identifiable {
category: AgeRatingContentDescriptionCategory;
description: string;
}
export declare enum AgeRatingContentDescriptionCategory {
"PEGI" = 1,
"ESRB" = 2
}
export declare enum AgeRatingContentDescriptionFields {
"ID" = "id",
"CHECKSUM" = "checksum",
"CATEGORY" = "category",
"DESCRIPTION" = "description"
}
/**
* Referenced from [AgeRating]({@link AgeRating.ts}) - content_descriptions field
*/
export declare enum AgeRatingContentDescriptionReferenceFields {
"ID" = "content_descriptions.id",
"CHECKSUM" = "content_descriptions.checksum",
"CATEGORY" = "content_descriptions.category",
"DESCRIPTION" = "content_descriptions.description"
}