From dcb311f73b8aaed870016573c44f6daee06d82a6 Mon Sep 17 00:00:00 2001 From: lisonge Date: Mon, 25 Dec 2023 23:49:41 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=AD=97=E6=AE=B5=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/types.ts b/src/types.ts index 86abf0d3..e6f88ed6 100644 --- a/src/types.ts +++ b/src/types.ts @@ -131,6 +131,10 @@ type RawCommonProps = { type RawRuleProps = RawCommonProps & { /** * 当前规则在列表中的唯一标识 + * + * key 没有顺序大小之分, 可以是任意数字 + * + * 设置后不可更改, 否则造成点击记录错乱 */ key?: number; @@ -206,6 +210,10 @@ type RawGroupProps = RawCommonProps & { * 当前规则组在列表中的唯一标识 * * 也是客户端禁用/启用此规则组的依据 + * + * 设置后不可更改, 否则造成客户端启用/禁用错乱 + * + * key 没有顺序大小之分, 可以是任意数字 */ key: number;