/* eslint-disable import/prefer-default-export */

type weight = number;
/** e.g.: `{ foo: 1, bar: 3 }` */
export type freqMapWordAsKeyType = {
  [word: string]: weight;
};

/* eslint-enable import/prefer-default-export */
