@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
23 lines (20 loc) • 533 B
JavaScript
;
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
import { PinPolicy } from "./PinPolicy.js";
/**
* An object defining the {@link PinPolicy}.
*
* @group User Interaction
* @category Pin
*/
export class PinPolicyProvider {
/**
* The object defining the minimum and maximum length of the PIN.
*
* If not implemented, it will return a PIN policy with a minimum and maximum length of 6 digits.
*/
pinPolicy = PinPolicy.create(6, 6);
}
//# sourceMappingURL=PinPolicyProvider.js.map