@creejs/commons-retrier
Version:
Common Utils About Task Retrying
14 lines (13 loc) • 426 B
TypeScript
export default class ShuttlePolicy extends Policy {
/**
* the inteval value shuttles between min and max
* @param {number} stepLength - the step length to change
*/
constructor(stepLength: number);
_stepLength: number;
increasement: number;
set stepLength(stepLength: number);
get stepLength(): number;
}
export { ShuttlePolicy as ShuttlePolicyType };
import Policy from '../policy.js';