File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -121,37 +121,37 @@ export interface ModelStatic extends EventEmitter {
121
121
/**
122
122
* The path passed to `FeathersClient.service()` to create the service
123
123
*/
124
- readonly servicePath : string
124
+ servicePath : string
125
125
/**
126
126
* Holds the value that was used to register the module with Vuex.
127
127
* This will match the servicePath unless you've provided a custom
128
128
* namespace in the Service Module plugin options.
129
129
*/
130
- readonly namespace : string
130
+ namespace : string
131
131
/**
132
132
* The global Vuex store
133
133
*/
134
134
readonly store : Store < StoreState >
135
135
/**
136
136
* The field in each record that will contain the ID
137
137
*/
138
- readonly idField : string
138
+ idField : string
139
139
/**
140
140
* The field in each temporary record that contains the temporary ID
141
141
*/
142
- readonly tempIdField : string
142
+ tempIdField : string
143
143
/**
144
144
* If `true`, calling `model.save()` will do an `update` instead of a `patch`.
145
145
*/
146
- readonly preferUpdate : boolean
146
+ preferUpdate : boolean
147
147
/**
148
148
* Server alias in the global `models` object
149
149
*/
150
- readonly serverAlias : string
150
+ serverAlias : string
151
151
/**
152
152
* Model name used to circumvent Babel transpilation errors
153
153
*/
154
- readonly modelName : string
154
+ modelName : string
155
155
/**
156
156
* The global `models` object
157
157
*/
You can’t perform that action at this time.
0 commit comments