barkey/packages/megalodon/src/mastodon/entities/card.ts
2023-09-25 01:49:57 +02:00

18 lines
387 B
TypeScript

namespace MastodonEntity {
export type Card = {
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
}
}