UNPKG

@replyke/core

Version:

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

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