Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9224141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:14:36+00:00 2026-06-18T04:14:36+00:00

I was wondering how could one declare a typed-function array in TypeScript. For instance,

  • 0

I was wondering how could one declare a typed-function array in TypeScript.

For instance, say I have a field which can hold a function that has no arguments and returns void:

private func: () => void;

Now, say I wanted a field which can hold an array of such functions:

private funcs: () => void  [];

This is obviously the wrong way to do what I intended since the compiler considers this to be a function which returns an array of voids.

Trying to isolate the inline prototype declaration with parentheses as in:

private funcs2: (  () => void  ) [];

causes a compiler error.

Does anyone have an idea of how this could be accomplished ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T04:14:38+00:00Added an answer on June 18, 2026 at 4:14 am

    You’ll need to use the full type literal syntax instead of the => shorthand:

    private funcs: { (): void; }[];
    

    You could also make an interface if that looks too weird:

    // (elsewhere at top-level)
    interface foo {
        (): void;
    }
    
    class etc {
        private funcs: foo[];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if any one could help me out; I have a table
I am using Doctrine and I am wondering if I could have a One
I'm wondering if one could define a class in Ruby to have the following
I was wondering how could I remove one (wrongly inserted) entry/word from the ispell
I was wondering which could be a better way of mounting different apps for
I had accidentally tried this, which compiles! So I was wondering what could this
I was wondering if one could implement custom iterators to an abstract class as
I was wondering how I could possibly organize one vector by placing it into
I have a following problem and I am wondering where could be the cause.
I have a class which is supposed to be abstract. In one of it's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.