mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 13:59:16 +01:00
Begin work on media attachments
This commit is contained in:
parent
97af3bc2d0
commit
580958a181
7 changed files with 184 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue