We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900f623 commit f513293Copy full SHA for f513293
src/service-module/service-module.state.ts
@@ -36,6 +36,7 @@ export interface ServiceStateExclusiveDefaults {
36
}
37
paramsForServer: string[]
38
modelName?: string
39
+ debounceEventsTime: number
40
41
42
export interface ServiceState<M extends Model = Model> {
@@ -77,6 +78,7 @@ export interface ServiceState<M extends Model = Model> {
77
78
default?: PaginationState
79
80
81
82
83
84
export interface PaginationState {
@@ -111,6 +113,7 @@ export default function makeDefaultState(options: MakeServicePluginOptions) {
111
113
defaultSkip: null
112
114
},
115
paramsForServer: ['$populateParams'],
116
+ debounceEventsTime: null,
117
118
isFindPending: false,
119
isGetPending: false,
0 commit comments