How can I declare a variable of type List ?

List<String> 선언방법

var foo:string[] = ['a','b']; 
foo.push('c');
console.log(foo) // [a,b,c]