3fd2b55406
This reverts commit 89eea5df52
.
18 lines
435 B
TypeScript
18 lines
435 B
TypeScript
namespace Entity {
|
|
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
|
|
}
|
|
}
|