Build a function object with properties in TypeScript

后端 未结 9 1295
南旧
南旧 2020-11-28 06:00

I want to create a function object, which also has some properties held on it. For example in JavaScript I would do:

var f = function() { }
f.someValue = 3;
         


        
9条回答
  •  孤城傲影
    2020-11-28 06:23

    So if the requirement is to simply build and assign that function to "f" without a cast, here is a possible solution:

    var f: { (): any; someValue: number; };
    
    f = (() => {
        var _f : any = function () { };
        _f.someValue = 3;
        return _f;
    })();
    

    Essentially, it uses a self executing function literal to "construct" an object that will match that signature before the assignment is done. The only weirdness is that the inner declaration of the function needs to be of type 'any', otherwise the compiler cries that you're assigning to a property which does not exist on the object yet.

    EDIT: Simplified the code a bit.

提交回复
热议问题