sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
18 lines (17 loc) • 398 B
TypeScript
import { type StyleValue } from 'vue';
export interface StatusBarProps {
rootStyle?: StyleValue;
rootClass?: string;
height?: string;
reverse?: boolean;
}
export declare const defaultStatusBarProps: {
height: string;
};
export interface StatusBarSlots {
default?(props: Record<string, never>): any;
}
export interface StatusBarEmits {
}
export interface StatusBarExpose {
}