UNPKG

generate-words-freqmap

Version:
10 lines (7 loc) 223 B
/* 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 */