wordnik-api
Version:
Community API for https://wordnik.com with types
37 lines (36 loc) • 1.61 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PartOfSpeech = void 0;
/**
* Defines parts of speech that the Wordnik API will return.
*/
var PartOfSpeech;
(function (PartOfSpeech) {
PartOfSpeech["noun"] = "noun";
PartOfSpeech["adjective"] = "adjective";
PartOfSpeech["verb"] = "verb";
PartOfSpeech["adverb"] = "adverb";
PartOfSpeech["interjection"] = "interjection";
PartOfSpeech["pronoun"] = "pronoun";
PartOfSpeech["preposition"] = "preposition";
PartOfSpeech["abbreviation"] = "abbreviation";
PartOfSpeech["affix"] = "affix";
PartOfSpeech["article"] = "article";
PartOfSpeech["auxiliary_verb"] = "auxiliary-verb";
PartOfSpeech["conjunction"] = "conjunction";
PartOfSpeech["definite_article"] = "definite-article";
PartOfSpeech["family_name"] = "family-name";
PartOfSpeech["given_name"] = "given-name";
PartOfSpeech["idiom"] = "idiom";
PartOfSpeech["imperative"] = "imperative";
PartOfSpeech["noun_plural"] = "noun-plural";
PartOfSpeech["noun_posessive"] = "noun-posessive";
PartOfSpeech["past_participle"] = "past-participle";
PartOfSpeech["phrasal_prefix"] = "phrasal-prefix";
PartOfSpeech["proper_noun"] = "proper-noun";
PartOfSpeech["proper_noun_plural"] = "proper-noun-plural";
PartOfSpeech["proper_noun_posessive"] = "proper-noun-posessive";
PartOfSpeech["suffix"] = "suffix";
PartOfSpeech["verb_intransitive"] = "verb-intransitive";
PartOfSpeech["verb_transitive"] = "verb-transitive";
})(PartOfSpeech = exports.PartOfSpeech || (exports.PartOfSpeech = {}));