type Result<R>
The result of a Task, which can be a value or a Promise-like value.
Definition
type Result<R> = PromiseLike<R> | R;
type Result<R>The result of a Task, which can be a value or a Promise-like value.
type Result<R> = PromiseLike<R> | R;