How to set default value for an object in typescript

I have an object whichs type is message: { [index: number]: string };

i want to set it’s initial value like

[{index : 2, message: "initial value"}];

i have tried to use below yet couldn’t done it . Any Help would be much appreciated.

var map = new Map ([
    [1,  'foo']
]);