UNPKG

@agility/content-fetch

Version:
18 lines (17 loc) 634 B
/** * Defines a **MediaItemMetaData** in the CMS * @typedef MediaItemMetaData * @memberof AgilityFetch.Types * @property {string} Title - The title meta data of the media item. * @property {string} Description - The description meta data of the media item. * @property {string} LinkUrl - The link url meta data of the media item. * @property {string} pixelHeight - The height in pixels of the media item. * @property {string} pixelWidth - The width in pixels of the media item. */ export interface MediaItemMetaData { Title: string; Description: string; LinkUrl: string; pixelHeight: string; pixelWidth: string; }