/** * IntMap - A map of abstract type (defined by implementer) that is keyed by an * integer string id. Example `IntMap`: * ``` * const myIntMapOfNumbers: IntMap = { * "1":2, * "3":4, * }; * ``` */ export interface IntMap { [id: string]: T; }