1
2
3
4
5
6
7
8
9
| import type { ExtractPropTypes } from 'vue';
| export declare const badgeProps: {
| readonly value: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
| readonly max: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 99, boolean>;
| readonly isDot: BooleanConstructor;
| readonly hidden: BooleanConstructor;
| readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "success" | "warning" | "info" | "primary" | "danger", unknown, "danger", boolean>;
| };
| export declare type BadgeProps = ExtractPropTypes<typeof badgeProps>;
|
|