UNPKG

@mimicry/kaleidoscope

Version:

Kaleidoscope is an NPM package that conveniently aggregates responses from multiple NFT data providers.

7 lines (6 loc) 245 B
import { Value } from '../../types'; /** * Return the median Value of the list of Values. * If the list has an even number of Values, return the mean of the two middle Values. */ export declare function median(_values: Value[]): Value;