UNPKG

rack-node

Version:

write like human, search like computer

13 lines (12 loc) 302 B
/** * Parvez M Robin * this@parvezmrobin.com * Jul 07, 2020 */ declare class CosineSimilarity { protected readonly listA: string[]; protected readonly listB: string[]; constructor(listA: string[], listB: string[]); getScore(): number; } export default CosineSimilarity;