New to TypeScript, please let me know if something is left out ... Okay here is my complete code:
/// <reference path="typings/knockout.d.ts" />
declare var ko: any;
module test {
var name = ko.observable('John Dude');
var id = ko.observable(1);
var guy = {
id: id,
fullName: name
};
var value: string = guy.fullName();
console.log(value);
}
The problem is ... I get this message, something about this line
declare var ko: any;
and here is the actual message

I have no idea how to fix it, tried pretty much everything! ... no idea why