/* 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 的合法值。 */ mode?: | "scaleToFill" | "aspectFit" | "aspectFill" | "widthFix" | "heightFix" | "top" | "bottom" | "center" | "left" | "right" | "top left" | "top right" | "bottom left" | "bottom right"; /** * 图片懒加载,在即将进入一定范围(上下左右三屏)时才开始加载。 */ "lazy-load"?: boolean; /** * 当错误发生时触发。 */ bindError?: () => void; /** * 当图片载入完毕时触发。 */ bindLoad?: () => void; }