interface ChangePasswordUseProps {
    email: string;
    newPassword: string;
    setError: ((error) => void);
}

Properties

email: string
newPassword: string
setError: ((error) => void)

Type declaration

    • (error): void
    • Parameters

      • error: string

      Returns void