/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface Image { /** * 图片资源地址 */ src?: string; /** * 图片裁剪、缩放的模式 */ mode?: string; /** * 当错误发生时,发布到 AppService 的事件名,事件对象 event.detail = {errMsg: 'something wrong'} */ bindError?: { [k: string]: unknown; }; /** * 当图片载入完毕时,发布到 AppService 的事件名,事件对象 event.detail = {height:'图片高度px', width:'图片宽度px'} */ bindLoad?: { [k: string]: unknown; }; }