UNPKG

@agoric/zoe

Version:

Zoe: the Smart Contract Framework for Offer Enforcement

7 lines 262 B
export function calculateMedian<T>(samples: Array<T>, math: TypedMath<T>): T | undefined; export type TypedMath<T> = { add: (a: T, b: T) => T; divide: (a: T, b: bigint) => T; isGTE: (a: T, b: T) => boolean; }; //# sourceMappingURL=statistics.d.ts.map