mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 03:41:30 +03:00
Extends IMediaEventContent by thumbnail info
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
2529b88bf6
commit
ce7f387dd6
1 changed files with 4 additions and 0 deletions
|
@ -38,6 +38,10 @@ export interface IMediaEventContent {
|
||||||
info?: {
|
info?: {
|
||||||
thumbnail_url?: string; // eslint-disable-line camelcase
|
thumbnail_url?: string; // eslint-disable-line camelcase
|
||||||
thumbnail_file?: IEncryptedFile; // eslint-disable-line camelcase
|
thumbnail_file?: IEncryptedFile; // eslint-disable-line camelcase
|
||||||
|
thumbnail_info?: { // eslint-disable-line camelcase
|
||||||
|
w: number;
|
||||||
|
h: number;
|
||||||
|
};
|
||||||
mimetype: string;
|
mimetype: string;
|
||||||
w?: number;
|
w?: number;
|
||||||
h?: number;
|
h?: number;
|
||||||
|
|
Loading…
Reference in a new issue