File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export interface FeathersVuexOptions {
20
20
idField ?: string
21
21
tempIdField ?: string
22
22
keepCopiesInStore ?: boolean
23
+ debounceEventsTime ?: number
23
24
nameStyle ?: string
24
25
paramsForServer ?: string [ ]
25
26
preferUpdate ?: boolean
@@ -50,6 +51,7 @@ export interface MakeServicePluginOptions {
50
51
replaceItems ?: boolean
51
52
skipRequestIfExists ?: boolean
52
53
nameStyle ?: string
54
+ debounceEventsTime ?: number
53
55
54
56
servicePath ?: string
55
57
namespace ?: string
@@ -245,7 +247,9 @@ export interface ModelStatic extends EventEmitter {
245
247
* A proxy for the `find` getter
246
248
* @param params Find params
247
249
*/
248
- findInStore < M extends Model = Model > ( params ?: Params | Ref < Params > ) : Paginated < M >
250
+ findInStore < M extends Model = Model > (
251
+ params ?: Params | Ref < Params >
252
+ ) : Paginated < M >
249
253
250
254
/**
251
255
* A proxy for the `count` action
@@ -269,7 +273,10 @@ export interface ModelStatic extends EventEmitter {
269
273
* @param id ID of record to retrieve
270
274
* @param params Get params
271
275
*/
272
- getFromStore < M extends Model = Model > ( id : Id | Ref < Id > , params ?: Params | Ref < Params > ) : M | undefined
276
+ getFromStore < M extends Model = Model > (
277
+ id : Id | Ref < Id > ,
278
+ params ?: Params | Ref < Params >
279
+ ) : M | undefined
273
280
}
274
281
275
282
/** Model instance interface */
You can’t perform that action at this time.
0 commit comments