You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/types.ts
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,7 @@ export type SettingSelector = {
11
11
* @remarks
12
12
* An asterisk `*` can be added to the end to return all key-values whose key begins with the key filter.
13
13
* e.g. key filter `abc*` returns all key-values whose key starts with `abc`.
14
-
* A comma `,` can be used to select multiple key-values. Comma separated filters must exactly match a key to select it.
15
-
* Using asterisk to select key-values that begin with a key filter while simultaneously using comma separated key filters is not supported.
16
-
* E.g. the key filter `abc*,def` is not supported. The key filters `abc*` and `abc,def` are supported.
17
-
* For all other cases the characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\).
14
+
* Characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\).
18
15
* e.g. the key filter `a\\b\,\*c*` returns all key-values whose key starts with `a\b,*c`.
0 commit comments