Skip to content

Commit 9f0c137

Browse files
committed
lint cleanup
1 parent a102dbe commit 9f0c137

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/service-module/types.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,12 @@ export interface FeathersVuexGlobalModels {
7575
}
7676

7777
// 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
8084

8185
export interface PatchParams<D extends {} = AnyData> extends Params {
8286
data?: Partial<D>
@@ -318,7 +322,6 @@ export interface Model {
318322
*/
319323
save(params?: Params): Promise<this>
320324

321-
322325
/**
323326
* Commit changes from clone to original
324327
*/

0 commit comments

Comments
 (0)