export interface OpenGraphData { title: string; description: string; image: string; url: string; imageInfo?: OpenGraphImageInfo; } export interface OpenGraphImageInfo { width: number; height: number; landscape?: boolean; available?: boolean; }