We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 988835d commit 4459465Copy full SHA for 4459465
packages/angular_devkit/core/src/experimental/jobs/strategy.ts
@@ -20,7 +20,11 @@ const stableStringify = require('fast-json-stable-stringify');
20
21
export namespace strategy {
22
23
- export type JobStrategy<A extends JsonValue, I extends JsonValue, O extends JsonValue> = (
+ export type JobStrategy<
24
+ A extends JsonValue = JsonValue,
25
+ I extends JsonValue = JsonValue,
26
+ O extends JsonValue = JsonValue,
27
+ > = (
28
handler: JobHandler<A, I, O>,
29
options?: Partial<Readonly<JobDescription>>,
30
) => JobHandler<A, I, O>;
0 commit comments