Begin work on media attachments

This commit is contained in:
Jesse Wierzbinski 2023-11-21 14:56:58 -10:00
parent 97af3bc2d0
commit 580958a181
No known key found for this signature in database
7 changed files with 184 additions and 2 deletions

View file

@ -161,5 +161,17 @@ export interface ContentFormat {
content: string;
content_type: string;
description?: string;
size?: string;
size?: number;
hash?: {
md5?: string;
sha1?: string;
sha256?: string;
sha512?: string;
[key: string]: string | undefined;
};
blurhash?: string;
fps?: number;
width?: number;
height?: number;
duration?: number;
}