interface MediaDetail {
    extension: null | string;
    height?: number;
    id: string;
    metaData: { [key: string]: string };
    name: string;
    relativePath: string;
    type: MediaType;
    width?: number;
}

Hierarchy (View Summary)

Properties

extension: null | string
height?: number
id: string
metaData: { [key: string]: string }
name: string
relativePath: string
type: MediaType
width?: number