UNPKG

wordnik-api

Version:

Community API for https://wordnik.com with types

15 lines (14 loc) 307 B
/** * Defines word labels. */ export default class Label { readonly text: string; readonly type: string; /** * Constructor. * * @param text {string} The text of the label. * @param type {string} The type of the label. */ constructor(text: string, type: string); }