Skip to content

Commit

Permalink
fix(module:transfer): fix TransferItem type to work with strictNullCh…
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytroyarmak authored and vthinkxie committed Jun 4, 2018
1 parent 7b8495a commit 77c1203
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/transfer/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 77c1203

Please sign in to comment.