UNPKG

randomized-string

Version:

There are lots of scenarios which one can use our Random string generator the most known or the best scenario is for

8 lines (7 loc) 332 B
import { options } from './types'; /** * @param option - could be a number which is the length of the string to be generated || could be an option { * @returns - random string generated */ export declare const generate: (option: number | options) => string; export declare const generateUnicodeEmoji: (length: number) => string;