mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
16 lines
350 B
TypeScript
16 lines
350 B
TypeScript
export interface PreviewCard {
|
|
url: string;
|
|
title: string;
|
|
description: string;
|
|
type: 'link' | 'photo' | 'video' | 'rich';
|
|
author_name: string;
|
|
author_url: string;
|
|
provider_name: string;
|
|
provider_url: string;
|
|
html: string;
|
|
width: number;
|
|
height: number;
|
|
image: string | null;
|
|
embed_url: string;
|
|
blurhash: string | null;
|
|
}
|