Not sure if the tittle is right but what I need to do is to store in some collection a pointer to specified function. I'm doing that pretty much like declaring a variable
SomeFunctionName: string
Of course this type can't be a string, the question is what should it exactly be?
type TGetSomeString = function : string; // read on procedural types in the documentationprocedure(args) of objectorfunction(args):resultype of objectplus the type declaration. stackoverflow.com/questions/4626614/…