@sqala/threedsecure-react
Version:
A React library for implementing 3D Secure authentication flows in payment applications
13 lines • 410 B
TypeScript
import { Nullable } from './nullable';
export type ThreeDSecureResult = {
id: string;
transStatus: string;
transStatusReason: Nullable<string>;
authenticationValue: Nullable<string>;
eci: Nullable<string>;
dsTransId: Nullable<string>;
protocolVersion: Nullable<string>;
failReason: Nullable<string>;
isSuccess(): boolean;
};
//# sourceMappingURL=threedsecure-result.d.ts.map