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 ce6250d commit d37514dCopy full SHA for d37514d
src/service-module/make-base-model.ts
@@ -7,7 +7,7 @@ import {
7
FeathersVuexOptions,
8
ModelInstanceOptions,
9
ModelStatic,
10
- ModelInstance
+ ModelInstanceClone
11
} from './types'
12
import { globalModels, prepareAddModel } from './global-models'
13
import { mergeWithAccessors, checkNamespace, getId } from '../utils'
@@ -58,7 +58,7 @@ export default function makeBaseModel(options: Required<FeathersVuexOptions>) {
58
return ExistingBaseModel as ModelStatic<D>
59
}
60
61
- abstract class BaseModel implements ModelInstance<D> {
+ abstract class BaseModel implements ModelInstanceClone<D> {
62
// Think of these as abstract static properties
63
public static servicePath: string
64
public static namespace: string
0 commit comments