strapi-plugin-firebase-authentication
Version:
Allows easy integration between clients utilizing Firebase for authentication and Strapi
10 lines (9 loc) • 357 B
TypeScript
interface ResendVerificationProps {
isOpen: boolean;
email: string;
userId: string;
onClose: () => void;
onSendVerificationEmail: () => Promise<void>;
}
export declare const ResendVerification: ({ isOpen, email, userId, onClose, onSendVerificationEmail, }: ResendVerificationProps) => import("react/jsx-runtime").JSX.Element;
export {};