Blame Raw
Cohee · e3f41666 · · 13 lines (336 B)
1 contributor
1export class AutoCompleteFuzzyScore {
2 /**@type {number}*/ start;
3 /**@type {number}*/ longestConsecutive;
4
5 /**
6 * @param {number} start
7 * @param {number} longestConsecutive
8 */
9 constructor(start, longestConsecutive) {
10 this.start = start;
11 this.longestConsecutive = longestConsecutive;
12 }
13}