How to access class member from function in method class in typescript

The same way you do it in javascript

export class MyVm {
    ToDo : string;

    Load() {
        //can access todo here by using this:
        this.ToDo = "test";
        var me = this;

        $.get("GetUrl", function (todos) {
            //but how do I get to Todo here??
            me.ToDo(todos); //WRONG ToDo..
        });
    }
}

Fenton is right.

But you can also do this:

 mycallback(todos, self) { self.todo(todos)); }
 $.get('url', mycallback(todos, this));

TypeScript also supports arrow function that preserve lexical scoping. Arrow functions result in similar code to Jakub's example but are neater as you don't need to create the variable and adjust usage yourself:

Here is the example using an arrow function:

$.get("GetUrl", (todos) => {
    this.ToDo(todos);
});