From 80de37c3cd38526e5c03c6e777d0a46dd5640e3f Mon Sep 17 00:00:00 2001 From: Juan Cazala Date: Fri, 21 Sep 2018 15:56:54 -0300 Subject: [PATCH] fix(Storage): make some properties optional in the storage middleware --- src/modules/storage/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/storage/types.ts b/src/modules/storage/types.ts index 0624f617..bc55c468 100644 --- a/src/modules/storage/types.ts +++ b/src/modules/storage/types.ts @@ -2,7 +2,7 @@ import { Migrations } from '../../lib/types' export interface StorageMiddleware { storageKey: string - paths: string[] | string[][] - actions: string[] - migrations: Migrations + paths?: string[] | string[][] + actions?: string[] + migrations?: Migrations }