megalodon/megalodon/src/mastodon/entities/card.ts
2022-01-02 16:28:11 +09:00

17 lines
338 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
}
}