igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
26 lines • 1.94 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgeRatingContentDescriptionReferenceFields = exports.AgeRatingContentDescriptionFields = exports.AgeRatingContentDescriptionCategory = void 0;
var AgeRatingContentDescriptionCategory;
(function (AgeRatingContentDescriptionCategory) {
AgeRatingContentDescriptionCategory[AgeRatingContentDescriptionCategory["PEGI"] = 1] = "PEGI";
AgeRatingContentDescriptionCategory[AgeRatingContentDescriptionCategory["ESRB"] = 2] = "ESRB";
})(AgeRatingContentDescriptionCategory = exports.AgeRatingContentDescriptionCategory || (exports.AgeRatingContentDescriptionCategory = {}));
var AgeRatingContentDescriptionFields;
(function (AgeRatingContentDescriptionFields) {
AgeRatingContentDescriptionFields["ID"] = "id";
AgeRatingContentDescriptionFields["CHECKSUM"] = "checksum";
AgeRatingContentDescriptionFields["CATEGORY"] = "category";
AgeRatingContentDescriptionFields["DESCRIPTION"] = "description";
})(AgeRatingContentDescriptionFields = exports.AgeRatingContentDescriptionFields || (exports.AgeRatingContentDescriptionFields = {}));
/**
* Referenced from [AgeRating]({@link AgeRating.ts}) - content_descriptions field
*/
var AgeRatingContentDescriptionReferenceFields;
(function (AgeRatingContentDescriptionReferenceFields) {
AgeRatingContentDescriptionReferenceFields["ID"] = "content_descriptions.id";
AgeRatingContentDescriptionReferenceFields["CHECKSUM"] = "content_descriptions.checksum";
AgeRatingContentDescriptionReferenceFields["CATEGORY"] = "content_descriptions.category";
AgeRatingContentDescriptionReferenceFields["DESCRIPTION"] = "content_descriptions.description";
})(AgeRatingContentDescriptionReferenceFields = exports.AgeRatingContentDescriptionReferenceFields || (exports.AgeRatingContentDescriptionReferenceFields = {}));
//# sourceMappingURL=AgeRatingContentDescription.js.map