UNPKG

generate-password-ts

Version:

Easy library for generating unique passwords. Compatible with node.js and browsers. Forked from original Node.js version.

4 lines (3 loc) 190 B
import { Options } from './Options'; export declare const generate: (options: Options) => string; export declare const generateMultiple: (amount: number, options: Options) => Array<string>;