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