I\'ve got the following class in TypeScript:
class CallbackTest { public myCallback; public doWork(): void { //doing some work...
To go one step further, you could declare a type pointer to a function signature like:
interface myCallbackType { (myArgument: string): void }
and use it like this:
public myCallback : myCallbackType;