c-uview-plus
Version:
零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水
23 lines (17 loc) • 403 B
TypeScript
import { AllowedComponentProps, VNodeProps } from './_common'
declare interface StatusBarProps {
/**
* 背景色
*/
bgColor?: string
/**
* 定义需要用到的外部样式
*/
customStyle?: unknown
}
declare interface _StatusBar {
new (): {
$props: AllowedComponentProps & VNodeProps & StatusBarProps
}
}
export declare const StatusBar: _StatusBar