server/types/entities/card.ts

17 lines
332 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
export interface APICard {
2023-09-11 05:31:08 +02:00
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;
2023-09-11 05:46:20 +02:00
}