mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-14 02:16:14 +01:00
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;
|
||
|
}
|
||
|
}
|