File tree 1 file changed +2
-2
lines changed
packages/connect-query-core/src
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ type KeyParams<Desc extends DescMethod | DescService> = Desc extends DescMethod
92
92
/**
93
93
* Set `cardinality` in the key - undefined is used for filters to match both finite and infinite queries.
94
94
*/
95
- cardinality : "finite" | "infinite" | undefined ;
95
+ cardinality ? : "finite" | "infinite" | undefined ;
96
96
/**
97
97
* If omit the field with this name from the key for infinite queries.
98
98
*/
@@ -110,7 +110,7 @@ type KeyParams<Desc extends DescMethod | DescService> = Desc extends DescMethod
110
110
/**
111
111
* Set `cardinality` in the key - undefined is used for filters to match both finite and infinite queries.
112
112
*/
113
- cardinality : "finite" | "infinite" | undefined ;
113
+ cardinality ? : "finite" | "infinite" | undefined ;
114
114
} ;
115
115
116
116
/**
You can’t perform that action at this time.
0 commit comments