bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import { GaxiosError } from './common.js';
|
|
export declare function getRetryConfig(err: GaxiosError): Promise<{
|
|
shouldRetry: boolean;
|
|
config?: undefined;
|
|
} | {
|
|
shouldRetry: boolean;
|
|
config: import("./common.js").GaxiosOptionsPrepared;
|
|
}>;
|