/** * @type MediaFile: Document representing media file. * * @property absUrl: The absolute URL with request protocol. * * @property alt: The alternative image text. * * @property disBaseUrl: The Dynamic Image Service (DIS) base URL for product images only. * * @property path: The raw media file path. * * @property title: The image title. * */ export type MediaFile = { absUrl?: string; alt?: { [key: string]: string; }; disBaseUrl?: string; path: string; title?: { [key: string]: string; }; } & { [key: string]: any; };