From 40fdf554b104609bcf163031b288b867832b0117 Mon Sep 17 00:00:00 2001 From: Yasushi Nishina Date: Sat, 27 Aug 2022 16:54:56 +0900 Subject: [PATCH] Added autoComplete type. --- src/ReactCodeInput.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ReactCodeInput.d.ts b/src/ReactCodeInput.d.ts index 2cb454f..f98cbb4 100644 --- a/src/ReactCodeInput.d.ts +++ b/src/ReactCodeInput.d.ts @@ -73,6 +73,9 @@ export interface ReactCodeInputProps { // The inputMode prop tells the browser on devices with dynamic keyboards which keyboard to display. inputMode: InputModeTypes + // The autoComplete prop specifies whether or not an input field should have autocomplete enabled. + autoComplete?: string + } declare class ReactCodeInput extends Component {