@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
21 lines (20 loc) • 576 B
TypeScript
declare function useSignUpWithEmailAndPassword(): ({ email, password, name, username, avatar, bio, location, birthdate, metadata, secureMetadata, }: {
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;