UNPKG

wordnik-api

Version:

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

20 lines (16 loc) 334 B
/** * Defines word labels. */ export default class Label { /** * Constructor. * * @param text {string} The text of the label. * @param type {string} The type of the label. */ public constructor( public readonly text: string, public readonly type: string, ) { } }