ditto/src/entities/MastodonAttachment.ts
2024-08-07 21:19:04 -05:00

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;
};
};
}