UNPKG

@gabrielrufino/cube

Version:

Data structures made in Typescript

6 lines (5 loc) 174 B
import type LinkedList from '../LinkedList'; interface IHashTableSeparateChainingData<T> { [key: number]: LinkedList<T>; } export default IHashTableSeparateChainingData;