tdesign-miniprogram
Version:
tdesign-miniprogram
24 lines (23 loc) • 480 B
TypeScript
import { BadgeProps } from '../badge/index';
export interface TdSideBarItemProps {
badgeProps?: {
type: ObjectConstructor;
value?: BadgeProps;
};
disabled?: {
type: BooleanConstructor;
value?: boolean;
};
icon?: {
type: null;
value?: string | object;
};
label?: {
type: StringConstructor;
value?: string;
};
value?: {
type: null;
value?: string | number;
};
}