UNPKG

@trackr/effects-gain

Version:

A subpackage of trackr that contains gain effects.

18 lines (17 loc) 403 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Score = void 0; class Score { constructor(score, docId, name) { this.score = score; this.docId = docId; this.name = name; } compareTo(other) { if (other.score < this.score) { return -1; } return 1; } } exports.Score = Score;