Skip to content

Commit

Permalink
fix(Storage): make some properties optional in the storage middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
cazala committed Sep 21, 2018
1 parent fbf67b4 commit 80de37c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/storage/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Migrations } from '../../lib/types'

export interface StorageMiddleware<T> {
storageKey: string
paths: string[] | string[][]
actions: string[]
migrations: Migrations<T>
paths?: string[] | string[][]
actions?: string[]
migrations?: Migrations<T>
}

0 comments on commit 80de37c

Please sign in to comment.