File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ type UnifiedTypes<T> = T extends Array<Signal<QueryObserverBaseResult<any>>>
27
27
* This function is used to merge multiple signal queries into one.
28
28
* It will return a new base query result that will merge the results of all the queries.
29
29
* Note that it should be used inside injection context.
30
- * If you pass the 'intersectStaleData' flag, it will also intersect unsuccessful result if data for all queries is present.
30
+ * If you pass the 'intersectStaleData' flag, it will also intersect unsuccessful result in case data for all queries is present.
31
31
*
32
32
* @example
33
33
*
@@ -38,7 +38,6 @@ type UnifiedTypes<T> = T extends Array<Signal<QueryObserverBaseResult<any>>>
38
38
* return todos + posts;
39
39
* });
40
40
*
41
- *
42
41
* @example
43
42
*
44
43
* const query = intersectResults(
@@ -51,7 +50,6 @@ type UnifiedTypes<T> = T extends Array<Signal<QueryObserverBaseResult<any>>>
51
50
* }
52
51
* );
53
52
*
54
- *
55
53
* @example
56
54
*
57
55
* const query = intersetResults({
@@ -79,7 +77,7 @@ export function intersectResults<
79
77
: ( ) => Object . entries ( signals ) . reduce ( ( acc , [ key , value ] ) => {
80
78
acc [ key as keyof UnifiedTypes < T > ] = value ( ) . data ;
81
79
return acc ;
82
- } , { } as UnifiedTypes < T > )
80
+ } , { } as UnifiedTypes < T > ) ;
83
81
84
82
return computed ( ( ) => {
85
83
const mappedResult = {
You can’t perform that action at this time.
0 commit comments