智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/35/35a0e7b02e4e7cdf6f4b840fe47...

13 lines
392 B

/**
* @file 自定义分析
*/
declare namespace my {
/**
* 自定义分析数据的上报接口。使用前需要在小程序管理后台的事件管理中新建事件,并配置好事件名和字段。
*
* @param eventName 自定义事件名,需申请
* @param data 上报的数据
*/
function reportAnalytics(eventName: string, data: Record<string, any>): void;
}