kiutils
Version:
🎑 (Library) an Javascript library that provide various utilities, including Image manipulation tools, Discord-related utilities, and a logger.
11 lines • 380 B
TypeScript
/**
* Generates a random string of specified length
* @param {number} length - Length of the random string
* @returns {string} Random string
* @example
* const { randString } = require("kiutils")
* const random = randString(10)
* console.log(random) // => "a1b2c3d4e5"
*/
export declare function randString(length: number): string;
//# sourceMappingURL=randString.d.ts.map