UNPKG

react-link-preview-card

Version:

A React component for generating beautiful link preview cards with metadata

17 lines (13 loc) 336 B
import * as react from 'react'; interface LinkPreviewData { title: string; description: string; image: string; url: string; type?: string; } interface LinkPreviewProps { url: string; } declare const LinkPreview: react.FC<LinkPreviewProps>; export { LinkPreview, type LinkPreviewData, type LinkPreviewProps };