UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

8 lines (7 loc) 188 B
export interface VerifyEmailProps { token: string; } declare function useVerifyEmail(): (props: VerifyEmailProps) => Promise<{ success: boolean; }>; export default useVerifyEmail;