17 lines
339 B
JavaScript
17 lines
339 B
JavaScript
|
|
|
|
|
|
export class AutoCompleteFuzzyScore {
|
|
/**@type {number}*/ start;
|
|
/**@type {number}*/ longestConsecutive;
|
|
|
|
/**
|
|
* @param {number} start
|
|
* @param {number} longestConsecutive
|
|
*/
|
|
constructor(start, longestConsecutive) {
|
|
this.start = start;
|
|
this.longestConsecutive = longestConsecutive;
|
|
}
|
|
}
|