UNPKG

alistair

Version:
9 lines (7 loc) 244 B
/** * Generates an ID * @param length The length of the ID to generate * @param alphabet The alphabet to choose characters from. Does not dedupe multiples! */ declare function id(length?: number, alphabet?: string): string; export { id };