streamingRetryRequest.d.ts 351 B

1234567891011
  1. interface streamingRetryRequestOptions {
  2. request: Function;
  3. maxRetries?: number;
  4. }
  5. /**
  6. * Localized adaptation derived from retry-request
  7. * @param opts - corresponds to https://github.com/googleapis/retry-request#opts-optional
  8. * @returns
  9. */
  10. export declare function streamingRetryRequest(opts: streamingRetryRequestOptions): any;
  11. export {};