UNPKG

@replyke/core

Version:

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

9 lines (8 loc) 247 B
export interface UseSwitchAccountReturn { switchAccount: ({ userId }: { userId: string; }) => Promise<void>; isSwitching: boolean; error: string | null; } export default function useSwitchAccount(): UseSwitchAccountReturn;