igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
23 lines • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GameVideoReferenceFields = exports.GameVideoFields = void 0;
var GameVideoFields;
(function (GameVideoFields) {
GameVideoFields["ID"] = "id";
GameVideoFields["CHECKSUM"] = "checksum";
GameVideoFields["GAME"] = "game";
GameVideoFields["NAME"] = "name";
GameVideoFields["VIDEO_ID"] = "video_id";
})(GameVideoFields = exports.GameVideoFields || (exports.GameVideoFields = {}));
/**
* Referenced from [Game]({@link Game.ts}) - videos field
*/
var GameVideoReferenceFields;
(function (GameVideoReferenceFields) {
GameVideoReferenceFields["ID"] = "videos.id";
GameVideoReferenceFields["CHECKSUM"] = "videos.checksum";
GameVideoReferenceFields["GAME"] = "videos.game";
GameVideoReferenceFields["NAME"] = "videos.name";
GameVideoReferenceFields["VIDEO_ID"] = "videos.video_id";
})(GameVideoReferenceFields = exports.GameVideoReferenceFields || (exports.GameVideoReferenceFields = {}));
//# sourceMappingURL=GameVideo.js.map