/* 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 AnimationView { /** * 动画资源地址,目前只支持绝对路径 */ path: string; /** * 动画是否循环播放 */ loop?: boolean; /** * 动画是否自动播放 */ autoplay?: boolean; /** * 动画操作,可取值 play、pause、stop */ action?: "play" | "pause" | "stop"; /** * 是否隐藏动画 */ hidden?: boolean; /** * 当播放到末尾时触发 ended 事件(自然播放结束会触发回调,循环播放结束及手动停止动画不会触发) */ bindEnded?: () => void; }