This commit is contained in:
Eric Jizba 2021-11-02 17:02:20 -07:00 коммит произвёл Eric Jizba
Родитель b153742b51
Коммит 0da53df181
1 изменённых файлов: 2 добавлений и 2 удалений

4
types/index.d.ts поставляемый
Просмотреть файл

@ -179,9 +179,9 @@ declare module '@azure/functions' {
*/
functionDirectory: string;
/**
* The retry context of the current funciton execution. The retry context of the current function execution. Equals null if retry policy is not defined or it's the first function execution.
* The retry context of the current function execution or null if the retry policy is not defined.
*/
retryContext?: RetryContext;
retryContext: RetryContext | null;
}
export interface RetryContext {
/**