I am using Visual Studio 2013 fully patched. I am trying to use JQuery, JQueryUI and JSRender. I am also trying to use TypeScript. In the ts file I\'m getting an error as follo
You can assign the any type to the object:
any
let bar: any = {}; bar.foo = "foobar";