mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
export interface MastodonAttachment {
|
|
id: string;
|
|
type: string;
|
|
url: string;
|
|
preview_url?: string;
|
|
remote_url?: string | null;
|
|
description?: string;
|
|
blurhash?: string | null;
|
|
meta?: {
|
|
original?: {
|
|
width?: number;
|
|
height?: number;
|
|
};
|
|
};
|
|
}
|