UNPKG

airwallex-payment-elements

Version:

[![Version](https://img.shields.io/npm/v/airwallex-payment-elements.svg)](https://www.npmjs.org/package/airwallex-payment-elements) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://git

24 lines (22 loc) 552 B
/** * 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;