UNPKG

@replyke/core

Version:

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

7 lines (6 loc) 232 B
import { UrlMetadata } from "../../interfaces/UrlMetadata"; export interface GetMetadataProps { url: string; } declare function useGetMetadata(): (props: GetMetadataProps) => Promise<UrlMetadata>; export default useGetMetadata;