From 3eeddc1e2f8bb7ee4485e9c24625e4e7023f9555 Mon Sep 17 00:00:00 2001 From: lisonge Date: Sat, 9 Sep 2023 19:21:13 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=E5=BB=B6=E8=BF=9F?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=AD=97=E6=AE=B5=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/types.ts b/src/types.ts index 693ca6b6..866818e4 100644 --- a/src/types.ts +++ b/src/types.ts @@ -20,14 +20,26 @@ type CommonProps = { * 如果 设备界面Id startWith activityIds 的任意一项, 则匹配 */ activityIds?: IArray; + /** * 如果 设备界面Id startWith excludeActivityIds 的任意一项, 则排除匹配, 这个优先级更高 */ excludeActivityIds?: IArray; + /** + * 单位: 毫秒 + * * 当前规则的冷却时间 */ cd?: number; + + /** + * 单位: 毫秒 + * + * 延迟执行 + */ + delay?: number; + appFilter?: { name?: StringFilter; versionName?: StringFilter;