@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
11 lines (10 loc) • 354 B
TypeScript
export interface SendVerificationEmailProps {
mode?: "code" | "link";
tokenFormat?: "hex" | "numeric" | "alpha" | "alphanumeric";
tokenLength?: number;
redirectUrl?: string;
}
declare function useSendVerificationEmail(): (props?: SendVerificationEmailProps) => Promise<{
success: boolean;
}>;
export default useSendVerificationEmail;