mirror of https://github.com/vector-im/riot-web
Extends IMediaEventContent by thumbnail info
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
2529b88bf6
commit
ce7f387dd6
|
@ -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 New Issue