UNPKG

use-link-preview

Version:
13 lines (12 loc) 314 B
export declare type Metadata = { title: string | null; description: string | null; img: string | null; domain: string; requestUrl: string; }; export default function useLinkPreview(url: string): { metadata: Metadata | null; isLoading: boolean; isError: Error | null; };