import { IKeyCollection } from "./dictionary.interface"; export default class Dictionary implements IKeyCollection { private items; private count; add(key: string, value: T): void; containsKey(key: string): boolean; size(): number; getItem(key: string): T; removeItem(key: string): T; getKeys(): string[]; values(): T[]; }