silly-password-generator
Version:
🔑 Generate silly passwords that are secure and easy to use. Inspired by xkcd.
7 lines (6 loc) • 309 B
TypeScript
export declare const MAX_WORD_COUNT = 20;
export declare const useSettings: () => {
wordCountState: import("react-storage-complete").StorageState<number>;
capitalizeState: import("react-storage-complete").StorageState<boolean>;
saltState: import("react-storage-complete").StorageState<string>;
};