@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
16 lines • 483 B
TypeScript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
import { PinPolicy } from './PinPolicy';
/**
* An object defining the {@link PinPolicy}.
*/
export declare abstract 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;
}
//# sourceMappingURL=PinPolicyProvider.d.ts.map