A simple interface for a key value pair with number as the key

interface INumberValuePair {
    [key: number]: any;
}

Indexable

[key: number]: any