UNPKG

@picosearch/bk-tree

Version:

Simple, zero dependency, type-safe implementation of a BK-Tree data structure.

6 lines (5 loc) 228 B
import { BKTree } from './bk-tree'; import { getEditDistance } from './levensthein'; import type { BKTreeNode, DistanceFunction } from './types'; export { BKTree, getEditDistance }; export type { DistanceFunction, BKTreeNode };