mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
chore: 添加延迟点击字段类型
This commit is contained in:
12
src/types.ts
12
src/types.ts
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user