UNPKG

@replyke/core

Version:

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

22 lines (21 loc) 629 B
declare function useSignUpWithEmailAndPassword(): ({ publicKeyBase64, email, password, name, username, avatar, bio, location, birthdate, metadata, secureMetadata, }: { publicKeyBase64: string | null; email: string; password: string; name?: string; username?: string; avatar?: string; bio?: string; location?: { latitude: number; longitude: number; }; birthdate?: Date; metadata?: Record<string, any>; secureMetadata?: Record<string, any>; }) => Promise<{ accessToken: any; refreshToken: any; user: any; }>; export default useSignUpWithEmailAndPassword;