/** * @type Image: * * @property alt: * - **Max Length:** 4000 * * @property disBaseLink: * - **Max Length:** 4000 * * @property link: * - **Min Length:** 1 * - **Max Length:** 4000 * * @property title: * - **Max Length:** 4000 * */ export type Image = { alt?: string; disBaseLink?: string; link: string; title?: string; } & { [key: string]: any; };