igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
31 lines • 1.51 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CollectionReferenceFields = exports.CollectionFields = void 0;
var CollectionFields;
(function (CollectionFields) {
CollectionFields["ID"] = "id";
CollectionFields["CHECKSUM"] = "checksum";
CollectionFields["CREATED_AT"] = "created_at";
CollectionFields["GAMES"] = "games";
CollectionFields["NAME"] = "name";
CollectionFields["SLUG"] = "slug";
CollectionFields["UPDATED_AT"] = "updated_at";
CollectionFields["URL"] = "url";
})(CollectionFields = exports.CollectionFields || (exports.CollectionFields = {}));
/**
* Referenced from [Game]({@link Game.ts}) - collection field
*
* Referenced from [Search]({@link Search.ts}) - collection field
*/
var CollectionReferenceFields;
(function (CollectionReferenceFields) {
CollectionReferenceFields["ID"] = "collection.id";
CollectionReferenceFields["CHECKSUM"] = "collection.checksum";
CollectionReferenceFields["CREATED_AT"] = "collection.created_at";
CollectionReferenceFields["GAMES"] = "collection.games";
CollectionReferenceFields["NAME"] = "collection.name";
CollectionReferenceFields["SLUG"] = "collection.slug";
CollectionReferenceFields["UPDATED_AT"] = "collection.updated_at";
CollectionReferenceFields["URL"] = "collection.url";
})(CollectionReferenceFields = exports.CollectionReferenceFields || (exports.CollectionReferenceFields = {}));
//# sourceMappingURL=Collection.js.map