I\'ve got the following class in TypeScript:
class CallbackTest { public myCallback; public doWork(): void { //doing some work...
If you want a generic function you can use the following. Although it doesn't seem to be documented anywhere.
class CallbackTest { myCallback: Function; }