scriptguard-library
Version:
A secure and customizable text input field library for React.
10 lines • 315 B
TypeScript
import { FC } from "react";
type PasswordGeneratorProps = {
minLength?: number;
maxLength?: number;
onGenerate?: (password: string) => void;
showStrengthMeter?: boolean;
};
export declare const PasswordGenerator: FC<PasswordGeneratorProps>;
export {};
//# sourceMappingURL=PasswordGenerator.d.ts.map