We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Task is a lazy promise that can't fail, any example of a promise that can't fail?
Task
import * as T from 'fp-ts/Task' const task: T.Task<void> = () => new Promise((resolve) => setTimeout(resolve, 1000))