API reference › @evolu/common › Schedule › ScheduleStep
Defined in: packages/common/src/Schedule.ts:122
Base interface for schedule-based task helpers.
Used by RetryAttempt, RepeatAttempt, and future schedule-driven helpers.
Extended by
Properties
attempt
readonly attempt: number & Brand<"NonNaN"> & Brand<"Finite"> & Brand<"Int"> & Brand<"NonNegative"> & Brand<"Positive">;
Defined in: packages/common/src/Schedule.ts:124
The current attempt.
delay
readonly delay: number & Brand<"NonNaN"> & Brand<"Finite"> & Brand<"Int"> & Brand<"NonNegative"> & Brand<"LessThan281474976710655"> & Brand<"Millis">;
Defined in: packages/common/src/Schedule.ts:130
Delay before the scheduled recurrence executes.
output
readonly output: Output;
Defined in: packages/common/src/Schedule.ts:127
Output from the Schedule step.