UNPKG

react-native-unit-components

Version:

Unit React Native components

14 lines (11 loc) 451 B
import { UNCardFlows } from './card/UNCardFlows'; import { UnitComponentsSDK } from '../unitComponentsSdkManager/UnitComponentsSdkManager'; export class UNComponentsFlows { constructor() { console.log('new Flows instance created'); } public async startPushProvisioning(cardId: string, customerToken: string) { UnitComponentsSDK.setCustomerToken(customerToken); await UNCardFlows.startPushProvisioning(cardId, customerToken); } }