UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

14 lines 319 B
export declare namespace Node { type Color = number & { readonly Color: unique symbol; }; } export interface Node<out K, out V> { color: Node.Color; key: K; value: V; left: Node<K, V> | undefined; right: Node<K, V> | undefined; count: number; } //# sourceMappingURL=node.d.ts.map