From 09b6c879bf90e4c6bdf201aeb36e0ab9c4df5bf1 Mon Sep 17 00:00:00 2001 From: Dmytro Yarmak Date: Sun, 3 Jun 2018 17:56:32 +0300 Subject: [PATCH] fix(module:transfer): fix TransferItem type to work with strictNullChecks Fixes #1588 --- components/transfer/interface.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/transfer/interface.ts b/components/transfer/interface.ts index a8c3a9ca59..fb8895c1cd 100644 --- a/components/transfer/interface.ts +++ b/components/transfer/interface.ts @@ -4,7 +4,8 @@ export interface TransferItem { disabled?: boolean; checked?: boolean; _hiden?: boolean; - [key: string]: {}; + // tslint:disable-next-line:no-any + [key: string]: any; } export interface TransferCanMove {