UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 229 B
export interface CheckSlugAvailabilityProps { slug: string; } declare function useCheckSlugAvailability(): (props: CheckSlugAvailabilityProps) => Promise<{ available: boolean; }>; export default useCheckSlugAvailability;