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