iceshrimp/packages/backend/src/server/api/mastodon/entities/card.ts
2023-10-04 22:01:04 +02:00

16 lines
325 B
TypeScript

namespace MastodonEntity {
export type Card = {
url: string;
title: string;
description: string;
type: "link" | "photo" | "video" | "rich";
image?: string;
author_name?: string;
author_url?: string;
provider_name?: string;
provider_url?: string;
html?: string;
width?: number;
height?: number;
};
}