Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 679 Bytes

File metadata and controls

19 lines (14 loc) · 679 Bytes
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @rushstack/node-core-library > IRunWithRetriesOptions > action

IRunWithRetriesOptions.action property

The action to be performed. The action is repeatedly executed until it completes without throwing or the maximum number of retries is reached.

Signature:

action: (retryCount: number) => Promise<TResult> | TResult;