interface person{ firstname; lastname; } interface apple{ colour; } function hello(p : person){ alert("hello " + p.firstname); } var aPerson = {firstname: "joe", lastname : "blogs"}; var anApple = {color: "red"}; var foo; if(true){ foo = anApple; } hello(foo);