react-native-expo-braintree
Version:
React native and expo wrapper around braintree sdk fro android and ios
8 lines • 1.06 kB
TypeScript
import type { BTCardTokenizationNonceResult, BTPayPalAccountNonceResult, BTPayPalError, BTPayPalGetDeviceDataResult, BTVenmoError, BTVenmoNonceResult, RequestBillingAgreementOptions, RequestOneTimePaymentOptions, RequestVenmoNonceOptions, TokenizeCardOptions } from './types';
export declare function requestBillingAgreement(options: RequestBillingAgreementOptions): Promise<BTPayPalAccountNonceResult | BTPayPalError>;
export declare function requestOneTimePayment(options: RequestOneTimePaymentOptions): Promise<BTPayPalAccountNonceResult | BTPayPalError>;
export declare function getDeviceDataFromDataCollector(clientToken: string, hasUserLocationConsent?: boolean, riskCorrelationId?: string): Promise<BTPayPalGetDeviceDataResult | BTPayPalError>;
export declare function tokenizeCardData(options: TokenizeCardOptions): Promise<BTCardTokenizationNonceResult | BTPayPalError>;
export declare function requestVenmoNonce(options: RequestVenmoNonceOptions): Promise<BTVenmoNonceResult | BTVenmoError>;
export * from './types';
//# sourceMappingURL=index.d.ts.map