@tdreyno/pretty-please
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -196,5 +196,5 @@ export declare type Reject<E> = (error: E) => void; | ||
export declare function map<E, S, S2>(fn: (result: S) => S2, task: Task<E, S>): Task<E, S2>; | ||
export declare function map2<E, E2, S, S2, S3>(fn: (a: S) => (b: S2) => S3, taskA: Task<E, S>, taskB: Task<E2, S2>): Task<E | E2, S3>; | ||
export declare function map3<E, E2, E3, S, S2, S3, S4>(fn: (a: S) => (b: S2) => (c: S3) => S4, taskA: Task<E, S>, taskB: Task<E2, S2>, taskC: Task<E3, S3>): Task<E | E2 | E3, S4>; | ||
export declare function map4<E, E2, E3, E4, S, S2, S3, S4, S5>(fn: (a: S) => (b: S2) => (c: S3) => (d: S4) => S5, taskA: Task<E, S>, taskB: Task<E2, S2>, taskC: Task<E3, S3>, taskD: Task<E4, S4>): Task<E | E2 | E3 | E4, S5>; | ||
export declare function map2<E, E2, S, S2, S3>(fn: (a: S) => (b: S2) => S3, taskA: Task<E, S> | Promise<S>, taskB: Task<E2, S2> | Promise<S2>): Task<E | E2, S3>; | ||
export declare function map3<E, E2, E3, S, S2, S3, S4>(fn: (a: S) => (b: S2) => (c: S3) => S4, taskA: Task<E, S> | Promise<S>, taskB: Task<E2, S2> | Promise<S2>, taskC: Task<E3, S3> | Promise<S3>): Task<E | E2 | E3, S4>; | ||
export declare function map4<E, E2, E3, E4, S, S2, S3, S4, S5>(fn: (a: S) => (b: S2) => (c: S3) => (d: S4) => S5, taskA: Task<E, S> | Promise<S>, taskB: Task<E2, S2> | Promise<S2>, taskC: Task<E3, S3> | Promise<S3>, taskD: Task<E4, S4> | Promise<S4>): Task<E | E2 | E3 | E4, S5>; | ||
/** | ||
@@ -201,0 +201,0 @@ * Run a side-effect on success. Useful for logging. |
{ | ||
"name": "@tdreyno/pretty-please", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"files": [ | ||
@@ -5,0 +5,0 @@ "dist-*/", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
261417
512