/** * An interface representing a mapping of characters to their respective count. * The keys are strings representing the characters and the values are numbers * representing the count of that character. */ export interface LetterCountType { [index: string]: number; }