UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

9 lines 254 B
import "../Operator/index.js"; /** * `Hash[A]` provides a way to hash a value */ export interface Hash<A> { readonly hash: (x: A) => number; } export declare function makeHash<A>(hash: (x: A) => number): Hash<A>; //# sourceMappingURL=index.d.ts.map