wordnik-api
Version:
Community API for https://wordnik.com with types
24 lines (22 loc) • 614 B
text/typescript
/**
* Describes relationship types between words.
*/
export enum RelationshipType {
synonym = "synonym",
antonym = "antonym",
variant = "variant",
equivalent = "equivalent",
cross_reference = "cross-reference",
related_word = "related-word",
rhyme = "rhyme",
form = "form",
etymologically_related_term = "etymologically-related-term",
hypernym = "hypernym",
hyponym = "hyponym",
inflected_form = "inflected-form",
primary = "primary",
same_context = "same-context",
verb_form = "verb-form",
verb_stem = "verb-stem",
has_topic = "has_topic",
}