UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 258 B
import { User } from "../../interfaces/models/User"; export interface FetchUserSuggestionsProps { query: string; } declare function useFetchUserSuggestions(): (props: FetchUserSuggestionsProps) => Promise<User[]>; export default useFetchUserSuggestions;