How can I declare a variable of type List ?
var foo:string[] = ['a','b']; foo.push('c'); console.log(foo) // [a,b,c]