-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
41 lines (38 loc) · 2.37 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export {
makeAsyncDuplicatesFinder,
makeDuplicatesFinder,
} from "./src/Factory/duplicatesFinderFactory";
export { makeCandidatesFinder } from "./src/Factory/candidatesFinderFactory";
export { makeJaccartSimilarityCalculator } from "./src/Factory/calculatorFactory";
export {
makeBaseSparseMatrix,
makeSignatureMatrix,
} from "./src/Factory/matrixFactory";
export {
makeWordShinglingTool,
makeStringShinglingTool,
} from "./src/Factory/shinglingToolFactory";
export { getCompactHasher } from "./src/Factory/hasherFactory";
export { makeMergeSortAlgo } from "./src/Factory/sortAlgoFactory";
export { default as BaseSparseMatrix } from "./src/ShinglingTool/BaseSparseMatrix";
export { default as BaseSignatureMatrix } from "./src/ShinglingTool/BaseSignatureMatrix";
export { default as WordShinglingTool } from "./src/ShinglingTool/WordShinglingTool";
export { default as StringShinglingTool } from "./src/ShinglingTool/StringShinglingTool";
export { default as JaccardSimilarityCalculato } from "./src/SimilarityCalculator/JaccardSimilarityCalculator";
export { default as CandidatesBucket } from "./src/Util/CandidatesBucket";
export { default as MergeSort } from "./src/Util/MergeSort";
export { default as saltGenerator } from "./src/Util/SaltGenerator";
export { default as BaseCandidatesFinder } from "./src/BaseCandidatesFinder";
export { default as BaseNearDuplicatesFinder } from "./src/BaseNearDuplicatesFinder";
export { default as BaseAsyncNearDuplicatesFinder } from "./src/BaseAsyncNearDuplicatesFinder";
export { default as AbstractNearDuplicatesFinder } from "./src/AbstractNearDuplicatesFinder";
export { default as NearDuplicatesFinder } from "./src/NearDuplicatesFinder";
export { default as AsyncNearDuplicatesFinder } from "./src/AsyncNearDuplicatesFinder";
export { default as CandidatesFinder } from "./src/CandidatesFinder";
export { default as SortAlgo } from "./src/Util/SortAlgo";
export { default as SimilarityCalculator } from "./src/SimilarityCalculator/SimilarityCalculator";
export { default as SparseMatrix } from "./src/ShinglingTool/SparseMatrix";
export { default as SignatureMatrix } from "./src/ShinglingTool/SignatureMatrix";
export { default as ShinglingTool } from "./src/ShinglingTool/ShinglingTool";
export { default as OffersShinglesByDoc } from "./src/ShinglingTool/OffersShinglesByDoc";
export { default as FromSparseMatrix } from "./src/ShinglingTool/FromSparseMatrix";