24
votes

I'm trying to create a function that returns a Promise with values that can be resolved to null.

Basically something like this:

static getUserById(ids: String): Promise<?User> {
  // do something
}

but it is returning an error

Generic type 'Promise' requires 1 type argument(s)

How to create a function in TypeScript that can return a Promise with nullable resolved values?

1

1 Answers

40
votes

? means optionnal parameter not nullable type.

You should use this:

Promise<User|null>