wordnik-api
Version:
Community API for https://wordnik.com with types
22 lines (21 loc) • 502 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Phrase {
/**
* Constructor for Phrase.
*
* @param count {number}
* @param gram1 {string}
* @param gram2 {string}
* @param mi {number}
* @param wlmi {number}
*/
constructor(count, gram1, gram2, mi, wlmi) {
this.count = count;
this.gram1 = gram1;
this.gram2 = gram2;
this.mi = mi;
this.wlmi = wlmi;
}
}
exports.default = Phrase;