tdesign-miniprogram
Version:
tdesign-miniprogram
19 lines (18 loc) • 394 B
TypeScript
export interface TdDividerProps {
align?: {
type: StringConstructor;
value?: 'left' | 'right' | 'center';
};
content?: {
type: StringConstructor;
value?: string;
};
dashed?: {
type: BooleanConstructor;
value?: boolean;
};
layout?: {
type: StringConstructor;
value?: 'horizontal' | 'vertical';
};
}