Sharkey/packages/megalodon/src/entities/async_attachment.ts

15 lines
348 B
TypeScript
Raw Normal View History

2023-09-23 19:49:47 +03:00
/// <reference path="attachment.ts" />
namespace Entity {
2023-09-25 02:20:03 +03:00
export type AsyncAttachment = {
id: string;
type: "unknown" | "image" | "gifv" | "video" | "audio";
url: string | null;
remote_url: string | null;
preview_url: string;
text_url: string | null;
meta: Meta | null;
description: string | null;
blurhash: string | null;
};
2023-09-23 19:49:47 +03:00
}