- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
/**
|
|
* Retry method options
|
|
*/
|
|
export interface RetryOptions {
|
|
/**
|
|
* Attempts made counter is reset to zero when retrying the job.
|
|
*/
|
|
resetAttemptsMade?: boolean;
|
|
/**
|
|
* Attempts started counter is reset to zero when retrying the job.
|
|
*/
|
|
resetAttemptsStarted?: boolean;
|
|
}
|