File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ import * as React from "react" ;
2+ import * as ReactNative from "react-native" ;
3+
4+ declare module "react-native-confirmation-code-input" {
5+
6+ type InputPositions = 'left' | 'right' | 'center' | 'full-width' ;
7+ type ClassNames = 'border-box' | 'border-circle' | 'border-b' | 'border-b-t' | 'border-l-r' ;
8+
9+ interface CodeInputProps extends ReactNative . TextInputProperties {
10+ codeLength ?: number ;
11+ compareWithCode ?: string ;
12+ inputPosition ?: InputPositions ;
13+ size ?: number ;
14+ space ?: number ;
15+ className ?: ClassNames ;
16+ cellBorderWidth ?: number ;
17+ activeColor ?: string ;
18+ inactiveColor ?: string ;
19+ ignoreCase ?: boolean ;
20+ codeInputStyle ?: any ,
21+ containerStyle ?: any ;
22+ onFulfill : Function ;
23+ }
24+
25+ export default class CodeInput extends React . Component < CodeInputProps , any > { }
26+ }
You can’t perform that action at this time.
0 commit comments