UNPKG

rn-sms-otp-autofill

Version:

React Native SMS OTP autofill for Android - TurboModule implementation for automatic SMS OTP code detection and filling

14 lines 415 B
import type { TurboModule } from 'react-native'; export interface Spec extends TurboModule { /** * Requests the native module to attempt OTP autofill */ requestOtpAutofill(): void; /** * Stops the SMS listener and cleans up resources */ stopOtpAutofill(): void; } declare const NativeModule: Spec; export default NativeModule; //# sourceMappingURL=NativeRnSmsOtpAutofill.d.ts.map