/* 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 NavigationBar { /** * 导航条标题 */ title?: string; /** * 是否在导航条显示 loading 加载提示 */ loading?: boolean; /** * 导航条前景颜色值,包括按钮、标题、状态栏的颜色,仅支持 #ffffff 和 #000000 */ "front-color"?: string; /** * 导航条背景颜色值,有效值为十六进制颜色 */ "background-color"?: string; /** * 改变导航栏颜色时的动画时长,默认为 0 (即没有动画效果) */ "color-animation-duration"?: number; /** * 改变导航栏颜色时的动画方式,支持 linear 、 easeIn 、 easeOut 和 easeInOut */ "color-animation-timing-func"?: string; }