UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 249 B
export interface CheckUsernameAvailabilityProps { username: string; } declare function useCheckUsernameAvailability(): (props: CheckUsernameAvailabilityProps) => Promise<{ available: boolean; }>; export default useCheckUsernameAvailability;