tdesign-miniprogram
Version:
tdesign-miniprogram
22 lines (21 loc) • 398 B
TypeScript
export interface TdSideBarItemProps {
badgeProps?: {
type: ObjectConstructor;
value?: object;
};
disabled?: {
type: BooleanConstructor;
value?: boolean;
};
icon?: {
type: null;
};
label?: {
type: StringConstructor;
value?: string;
};
value?: {
type: null;
value?: string | number;
};
}