/** * TypeScript equivalent of https://github.com/tysonmote/rendezvous/blob/be0258dbbd3d/rendezvous.go */ export declare class RendezvousHash { private readonly nodes; constructor(...nodes: string[]); add(...nodes: string[]): void; getNodes(): string[]; get(key: string): string; getN(n: number, key: string): string[]; rendezvous256(key: string): string[]; }