UNPKG

@flyerhq/react-native-link-preview

Version:

Fully customizable preview of the URL extracted from the provided text.

16 lines (15 loc) 287 B
export interface PreviewData { description?: string; image?: PreviewDataImage; link?: string; title?: string; } export interface PreviewDataImage { height: number; url: string; width: number; } export interface Size { height: number; width: number; }