strapi-plugin-firebase-authentication
Version:
Allows easy integration between clients utilizing Firebase for authentication and Strapi
13 lines (12 loc) • 489 B
TypeScript
interface ResetPasswordProps {
isOpen: boolean;
email: string;
userId: string;
onClose: () => void;
onDirectReset: (password: string) => Promise<void>;
onSendResetEmail: () => Promise<void>;
passwordRegex?: string;
passwordMessage?: string;
}
export declare const ResetPassword: ({ isOpen, email, userId, onClose, onDirectReset, onSendResetEmail, passwordRegex, passwordMessage, }: ResetPasswordProps) => import("react/jsx-runtime").JSX.Element;
export {};