2023-09-24 01:49:47 +09:00
|
|
|
namespace Entity {
|
2023-09-25 08:49:57 +09:00
|
|
|
export type Card = {
|
|
|
|
url: string
|
|
|
|
title: string
|
|
|
|
description: string
|
|
|
|
type: 'link' | 'photo' | 'video' | 'rich'
|
|
|
|
image: string | null
|
|
|
|
author_name: string | null
|
|
|
|
author_url: string | null
|
|
|
|
provider_name: string | null
|
|
|
|
provider_url: string | null
|
|
|
|
html: string | null
|
|
|
|
width: number | null
|
|
|
|
height: number | null
|
|
|
|
embed_url: string | null
|
|
|
|
blurhash: string | null
|
|
|
|
}
|
2023-09-24 01:49:47 +09:00
|
|
|
}
|