@ant-design/pro-chat
Version:
a solution for ai chat
28 lines (27 loc) • 654 B
TypeScript
export interface MetaData {
/**
* 角色头像
* @description 可选参数,如果不传则使用默认头像
*/
avatar?: string;
/**
* 背景色
* @description 可选参数,如果不传则使用默认背景色
*/
backgroundColor?: string;
/**
* 名称
* @description 可选参数,如果不传则使用默认名称
*/
title?: string;
/**
* 附加类名
* @description 可选参数,如果不传则无
*/
className?: string;
/**
* 附加数据
* @description 可选参数,如果不传则使用默认名称
*/
[key: string]: any;
}