UNPKG

word-frequency-counter

Version:
3 lines (2 loc) 182 B
export type RandomStringGenerator = () => string; export declare const generateRandomStrings: (numberOfStrings: number, randomStringGenerator: RandomStringGenerator) => Set<string>;