I\'m struggling to figure out if it\'s possible in TypeScript to declare a statically typed array of functions.
For example, I can do this:
foo: (data:st
You can find this in the language spec section 3.5.5:
foo: { (data: string): void; } []