igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
35 lines • 1.83 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GameEngineReferenceFields = exports.GameEngineFields = void 0;
var GameEngineFields;
(function (GameEngineFields) {
GameEngineFields["ID"] = "id";
GameEngineFields["CHECKSUM"] = "checksum";
GameEngineFields["COMPANIES"] = "companies";
GameEngineFields["CREATED_AT"] = "created_at";
GameEngineFields["DESCRIPTION"] = "description";
GameEngineFields["LOGO"] = "logo";
GameEngineFields["NAME"] = "name";
GameEngineFields["PLATFORMS"] = "platforms";
GameEngineFields["SLUG"] = "slug";
GameEngineFields["UPDATE_AT"] = "update_at";
GameEngineFields["URL"] = "url";
})(GameEngineFields = exports.GameEngineFields || (exports.GameEngineFields = {}));
/**
* Referenced from [Game]({@link Game.ts}) - game_engines field
*/
var GameEngineReferenceFields;
(function (GameEngineReferenceFields) {
GameEngineReferenceFields["ID"] = "game_engines.id";
GameEngineReferenceFields["CHECKSUM"] = "game_engines.checksum";
GameEngineReferenceFields["COMPANIES"] = "game_engines.companies";
GameEngineReferenceFields["CREATED_AT"] = "game_engines.created_at";
GameEngineReferenceFields["DESCRIPTION"] = "game_engines.description";
GameEngineReferenceFields["LOGO"] = "game_engines.logo";
GameEngineReferenceFields["NAME"] = "game_engines.name";
GameEngineReferenceFields["PLATFORMS"] = "game_engines.platforms";
GameEngineReferenceFields["SLUG"] = "game_engines.slug";
GameEngineReferenceFields["UPDATE_AT"] = "game_engines.update_at";
GameEngineReferenceFields["URL"] = "game_engines.url";
})(GameEngineReferenceFields = exports.GameEngineReferenceFields || (exports.GameEngineReferenceFields = {}));
//# sourceMappingURL=GameEngine.js.map