zview-plus
Version:
基于 Vue3 的 UI 组件库
20 lines (19 loc) • 492 B
TypeScript
import { ExtractPropTypes } from "vue";
export declare const badgeProps: {
value: {
type: (StringConstructor | NumberConstructor)[];
default: string;
};
max: {
type: NumberConstructor;
default: number;
};
isDot: BooleanConstructor;
hidden: BooleanConstructor;
type: {
type: StringConstructor;
values: string[];
default: string;
};
};
export declare type BadgeProps = ExtractPropTypes<typeof badgeProps>;