22

I'm getting really excited about TypeScript. How do you set the type of a function parameter?

function twoMoreThanYou(calculateANumber: Function):number {
    return calculateANumber(4) + 2;
}

function double(n:number):number {
    return n*2;
}

console.log("TWO MORE", twoMoreThanYou(double))

How can I type calculateANumber better? I'd like to specify that it must be a function that takes a number and returns a number.

Can I then make an "interface" or some shorthand for that type so I can make my higher order function signatures more readable?

1 Answer 1

37

These both work

interface NumberFunction extends Function {
    (n:number):number;
}

function twoMoreThanYou(calculateANumber: (n:number)=>number):number {
    ...
}

function twoMoreThanYou(calculateANumber: NumberFunction):number {
    ...
}
Sign up to request clarification or add additional context in comments.

1 Comment

You don't have to specify the return type for the twoMoreThanYou function with the NumberFunction interface. Type inference!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.