chore: 添加延迟点击字段类型

This commit is contained in:
lisonge
2023-09-09 19:21:13 +08:00
parent 092d86fb18
commit 3eeddc1e2f

View File

@@ -20,14 +20,26 @@ type CommonProps = {
* 如果 设备界面Id startWith activityIds 的任意一项, 则匹配 * 如果 设备界面Id startWith activityIds 的任意一项, 则匹配
*/ */
activityIds?: IArray<string>; activityIds?: IArray<string>;
/** /**
* 如果 设备界面Id startWith excludeActivityIds 的任意一项, 则排除匹配, 这个优先级更高 * 如果 设备界面Id startWith excludeActivityIds 的任意一项, 则排除匹配, 这个优先级更高
*/ */
excludeActivityIds?: IArray<string>; excludeActivityIds?: IArray<string>;
/** /**
* 单位: 毫秒
*
* 当前规则的冷却时间 * 当前规则的冷却时间
*/ */
cd?: number; cd?: number;
/**
* 单位: 毫秒
*
* 延迟执行
*/
delay?: number;
appFilter?: { appFilter?: {
name?: StringFilter; name?: StringFilter;
versionName?: StringFilter; versionName?: StringFilter;