mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-14 11:04:18 +01:00
17 lines
350 B
TypeScript
17 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;
|
|
}
|