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
…ecks

Fixes NG-ZORRO#1588
  • Loading branch information
dmytroyarmak committed Jun 3, 2018
1 parent c5c33d0 commit 09b6c87
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 09b6c87

Please sign in to comment.