/* 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 CoverImage { /** * 图标路径,支持临时路径、网络地址。暂不支持 base64 格式。 */ src?: string; /** * 图片加载成功时触发 */ bindLoad?: () => void; /** * 图片加载失败时触发 */ bindError?: () => void; }