/** * An interface representing a word count object. The keys of the object are strings * representing words, and the values are numbers representing the count of that word. */ export interface WordCountType { [index: string]: number; }