From 1fe4c33c177efe85e9dfd470b562662367518767 Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Thu, 15 Jan 2026 12:33:01 +0800 Subject: [PATCH] update comment --- src/types.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/types.ts b/src/types.ts index 7ef804a..71c64f9 100644 --- a/src/types.ts +++ b/src/types.ts @@ -11,10 +11,7 @@ export type SettingSelector = { * @remarks * An asterisk `*` can be added to the end to return all key-values whose key begins with the key filter. * e.g. key filter `abc*` returns all key-values whose key starts with `abc`. - * A comma `,` can be used to select multiple key-values. Comma separated filters must exactly match a key to select it. - * Using asterisk to select key-values that begin with a key filter while simultaneously using comma separated key filters is not supported. - * E.g. the key filter `abc*,def` is not supported. The key filters `abc*` and `abc,def` are supported. - * For all other cases the characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\). + * Characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\). * e.g. the key filter `a\\b\,\*c*` returns all key-values whose key starts with `a\b,*c`. */ keyFilter?: string,