tdesign-miniprogram
Version:
TDesign Component for miniprogram
31 lines (30 loc) • 710 B
TypeScript
export interface TdChatActionbarProps {
actionBar?: {
type: ArrayConstructor;
value?: Array<'replay' | 'copy' | 'good' | 'bad' | 'share'>;
};
chatId?: {
type: StringConstructor;
value?: string;
};
comment?: {
type: StringConstructor;
value?: string;
};
content?: {
type: StringConstructor;
value?: string;
};
copyMode?: {
type: StringConstructor;
value?: 'markdown' | 'text';
};
disabled?: {
type: BooleanConstructor;
value?: boolean;
};
placement?: {
type: StringConstructor;
value?: 'start' | 'end' | 'space-around' | 'space-between';
};
}