UNPKG

@replyke/core

Version:

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

8 lines (7 loc) 283 B
import { Entity, EntityIncludeParam } from "../../interfaces/models/Entity"; export interface FetchEntityProps { entityId: string; include?: EntityIncludeParam; } declare function useFetchEntity(): (props: FetchEntityProps) => Promise<Entity>; export default useFetchEntity;