react-native-unit-components
Version:
Unit React Native components
14 lines (11 loc) • 451 B
text/typescript
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);
}
}