| Name | Size | Mode | Actions |
|---|---|---|---|
| assert.d.ts | 890 | 0644 | editdlrm |
| compat.d.ts | 784 | 0644 | editdlrm |
| constants.d.ts | 1062 | 0644 | editdlrm |
| crypt.d.ts | 2013 | 0644 | editdlrm |
| deepCopy.d.ts | 1438 | 0644 | editdlrm |
| deferred.d.ts | 1255 | 0644 | editdlrm |
| emulator.d.ts | 1614 | 0644 | editdlrm |
| environment.d.ts | 3010 | 0644 | editdlrm |
| errors.d.ts | 2909 | 0644 | editdlrm |
| exponential_backoff.d.ts | 1399 | 0644 | editdlrm |
| formatters.d.ts | 735 | 0644 | editdlrm |
| json.d.ts | 1098 | 0644 | editdlrm |
| jwt.d.ts | 2607 | 0644 | editdlrm |
| obj.d.ts | 1193 | 0644 | editdlrm |
| promise.d.ts | 820 | 0644 | editdlrm |
| query.d.ts | 1309 | 0644 | editdlrm |
| sha1.d.ts | 2339 | 0644 | editdlrm |
| subscribe.d.ts | 1951 | 0644 | editdlrm |
| utf8.d.ts | 946 | 0644 | editdlrm |
| uuid.d.ts | 765 | 0644 | editdlrm |
| validation.d.ts | 1921 | 0644 | editdlrm |
/var/www/verywell.gr/server/delivery/node_modules/@firebase/util/dist/src/exponential_backoff.d.ts (1399B)
Visible for testing */ export declare const MAX_VALUE_MILLIS: number; /** * The percentage of backoff time to randomize by. * See * http://go/safe-client-behavior#step-1-determine-the-appropriate-retry-interval-to-handle-spike-traffic * for context. * *
Visible for testing */ export declare const RANDOM_FACTOR = 0.5; /** * Based on the backoff method from * https://github.com/google/closure-library/blob/master/closure/goog/math/exponentialbackoff.js. * Extracted here so we don't need to pass metadata and a stateful ExponentialBackoff object around. */ export declare function calculateBackoffMillis(backoffCount: number, intervalMillis?: number, backoffFactor?: number): number;