Dictionary interface defined as ```ts 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) ```ts interface ISomeList { [index: number]: any; } ```