File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -75,8 +75,12 @@ export interface FeathersVuexGlobalModels {
75
75
}
76
76
77
77
// Alias and default to any if user doesn't augment interfaces
78
- export type StoreState = keyof FeathersVuexStoreState extends never ? any : FeathersVuexStoreState
79
- export type GlobalModels = keyof FeathersVuexGlobalModels extends never ? any : FeathersVuexGlobalModels
78
+ export type StoreState = keyof FeathersVuexStoreState extends never
79
+ ? any
80
+ : FeathersVuexStoreState
81
+ export type GlobalModels = keyof FeathersVuexGlobalModels extends never
82
+ ? any
83
+ : FeathersVuexGlobalModels
80
84
81
85
export interface PatchParams < D extends { } = AnyData > extends Params {
82
86
data ?: Partial < D >
@@ -318,7 +322,6 @@ export interface Model {
318
322
*/
319
323
save ( params ?: Params ) : Promise < this>
320
324
321
-
322
325
/**
323
326
* Commit changes from clone to original
324
327
*/
You can’t perform that action at this time.
0 commit comments