intern-creative-platform / public /scripts /autocomplete /AutoCompleteFuzzyScore.js
duzhong's picture
Upload folder using huggingface_hub
84602ce verified
export class AutoCompleteFuzzyScore {
/**@type {number}*/ start;
/**@type {number}*/ longestConsecutive;
/**
* @param {number} start
* @param {number} longestConsecutive
*/
constructor(start, longestConsecutive) {
this.start = start;
this.longestConsecutive = longestConsecutive;
}
}