UNPKG

@klayr/utils

Version:

Library containing generic utility functions for use with Klayr-related software

7 lines (6 loc) 149 B
export declare class Node<V = object, K = number | bigint> { key: K; value: V; constructor(key: K, value: V); clone(): Node<V, K>; }