type Fun<R,A>
A function-based Task.
Definition
type Fun<R = void, A extends readonly any[] = []> = (context: Task.Context, ...args: A) => Task.Result<R>;
type Fun<R,A>A function-based Task.
type Fun<R = void, A extends readonly any[] = []> = (context: Task.Context, ...args: A) => Task.Result<R>;