TypeScript function to return nullable Promise

Viewed 14562

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 Answers
Related