How to create a class function that does not go to the TypeScript prototyped function?

advertisements

When i create a function inside the class, TS compiler makes that function as prototyped function for example.

class MyClass {
    getExample()
    {

    }
}

the resultant is

var MyClass = (function() {
    function MyClass() {}
    MyClass.prototype.getExample = function() {};
    return MyClass;
})();​

but what i need is

function MyClass() {

    this.getExample = function() {

    }
}​

is it possible to get a function like this ?


Take a look at this JQFAQ.com link, here is the answer for your question 'How to create a function in class that is not going to the prototyped function in TypeScript?', and there are more FAQs available.