From 6e1bdf9a2244591afe96542f77da29b089eeaf2f Mon Sep 17 00:00:00 2001 From: lisonge Date: Fri, 19 Jan 2024 22:41:09 +0800 Subject: [PATCH] feat: matchSystemApp --- src/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/types.ts b/src/types.ts index fed7b3b1..80ddb1a1 100644 --- a/src/types.ts +++ b/src/types.ts @@ -279,6 +279,13 @@ type RawGlobalRuleProps = { */ matchLauncher?: boolean; + /** + * 默认值: `false` + * + * 是否匹配系统应用, 仅全局规则可用 + */ + matchSystemApp?: boolean; + apps?: RawGlobalApp[]; };