/** * Thumbnail URL */ type ThumbnailUrl = { /** * URL pointing to the thumbnail to use for media content */ url: string; /** * HTML alt text to include on this thumbnail image */ alt: string; }; export type { ThumbnailUrl };