/**
 * An algorithm that could be used for distance calculation
 */
export type DistanceAlgorithm = 'MANHATTAN' | 'EUCLIDEAN'
