outers
Version:
outers - a all in one package for your day to day use
11 lines (10 loc) • 457 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 {};