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