File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
libs/ngrx-toolkit/src/lib Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import {
14
14
withComputed ,
15
15
withState ,
16
16
} from '@ngrx/signals' ;
17
- import { MethodsDictionary } from '@ngrx/signals/src/signal-store-models' ;
18
17
import { capitalize } from './with-data-service' ;
19
18
20
19
// This is a virtual page which is can be used to create a pagination control
@@ -90,19 +89,17 @@ export function withPagination<E, Collection extends string>(options: {
90
89
collection : Collection ;
91
90
} ) : SignalStoreFeature <
92
91
EmptyFeatureResult ,
93
- {
92
+ EmptyFeatureResult & {
94
93
state : NamedPaginationServiceState < E , Collection > ;
95
94
props : NamedPaginationServiceSignals < E , Collection > ;
96
- methods : MethodsDictionary ;
97
95
}
98
96
> ;
99
97
100
98
export function withPagination < E > ( ) : SignalStoreFeature <
101
99
EmptyFeatureResult ,
102
- {
100
+ EmptyFeatureResult & {
103
101
state : PaginationServiceState < E > ;
104
102
props : PaginationServiceSignals < E > ;
105
- methods : MethodsDictionary ;
106
103
}
107
104
> ;
108
105
You can’t perform that action at this time.
0 commit comments