Open artaommahe opened 8 years ago
Dictionary interface defined as
interface Dictionary<T> { [index: string]: T; }
this produce error with numeric-keys objects for any method that takes Dictionary (e.g. find, map, filter, etc)
interface ISomeList { [index: number]: any; }
Dictionary interface defined as
this produce error with numeric-keys objects for any method that takes Dictionary (e.g. find, map, filter, etc)