mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 08:28:19 +01:00
17 lines
425 B
TypeScript
17 lines
425 B
TypeScript
export type Card = {
|
|
url: string;
|
|
title: string;
|
|
description: string;
|
|
type: "link" | "photo" | "video" | "rich";
|
|
image: string | null;
|
|
author_name: string | null;
|
|
author_url: string | null;
|
|
provider_name: string | null;
|
|
provider_url: string | null;
|
|
html: string | null;
|
|
width: number | null;
|
|
height: number | null;
|
|
embed_url: string | null;
|
|
blurhash: string | null;
|
|
};
|