uniquegen
Version:
uniquegen is an package for Node.js projects, enabling the generation of random numbers and words. It offers flexibility and ease of use, making it a valuable tool for developers.
11 lines • 496 B
TypeScript
type num = number;
type str = string;
/**
* This TypeScript function generates a random string of symbols with a specified length.
* @param {num} length - The length parameter is a number that specifies the length of the symbol
* string that will be generated by the function.
* @returns a string that consists of randomly generated symbols of a specified length.
*/
export default function GenerateSymbol(length: num, Symbols: str[]): str;
export {};
//# sourceMappingURL=SymbolGen.d.ts.map