ts-pwgen
Version:
A command line password generator in TypeScript
9 lines (8 loc) • 336 B
TypeScript
/**
* This file contains all of the character sets that password_generator.ts uses.
*/
export declare const lowercaseLettersList: string[];
export declare const uppercaseLettersList: string[];
export declare const numbersList: string[];
export declare const specialCharactersList: string[];
export declare const latin1List: string[];