UNPKG

mutation-summary

Version:
7 lines (6 loc) 143 B
/** * A simple interface representing a JavaScript object with numbers for keys. */ export interface INumberMap<T> { [key: number]: T; }