react-native-nitro-totp
Version:
React Native module for TOTP (Time-based One-Time Password) and HOTP (HMAC-based One-Time Password) authentication.
9 lines • 321 B
TypeScript
import type { HybridObject } from 'react-native-nitro-modules';
import type { GenerateSecretKeyOptions } from '../types';
export interface NitroSecret extends HybridObject<{
ios: 'c++';
android: 'c++';
}> {
generate(options: GenerateSecretKeyOptions): string;
}
//# sourceMappingURL=NitroSecret.nitro.d.ts.map