A Typed array of functions

前端 未结 4 2087
生来不讨喜
生来不讨喜 2021-02-02 05:28

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         


        
4条回答
  •  春和景丽
    2021-02-02 05:56

    If you wish declare an array of callable function in TypeScript, you can declare a type:

    type Bar = (
      (data: string) => void
    );
    

    And then use it:

    const foo: Bar[] = [];
    
    const fooFn = (data: string) => console.log(data);
    foo.push(fooFn);
    foo.forEach((fooFn: Bar) => fooFn("Something");
    

提交回复
热议问题