export interface NavbarColor { /** * 背景色 */ backgroundColor?: string; /** * 背景颜色线性渐变 */ linearGradientColors?: string[]; /** * 背景色线性渐变方向 * * - 0:从上到下 * - 1:从左到右 * - 2:左上到右下 * - 3:右上到左下 */ linearGradientType?: number; } /** * 设置页面导航条颜色 */ declare function setNavbarColor(option: NavbarColor): void; export default setNavbarColor;