airwallex-payment-elements
Version:
[](https://www.npmjs.org/package/airwallex-payment-elements) [](https://git
24 lines (22 loc) • 552 B
TypeScript
/**
* The request payload for getDeviceFingerprint
*
*/
export interface GetDeviceFingerprintRequest {
/**
* The intent id that you would like to pay
*/
intent_id?: string;
/**
* The airwalllex env that you would like to integrate. for example: 'staging' | 'demo' | 'prod'
*/
env?: string;
/**
* Will it owerride the previous risk js, default true
*/
overrideScript?: boolean;
}
/**
* Method to collect device fingerprint
*/
export declare const getDeviceFingerprint: (props: GetDeviceFingerprintRequest) => string;