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