fix lint
This commit is contained in:
parent
5593a2056e
commit
65657dca69
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,7 @@ interface IInput {
|
|||
children?: JSX.Element;
|
||||
onPress: () => void;
|
||||
inputStyle?: object;
|
||||
disabled?: boolean | null;
|
||||
disabled?: boolean;
|
||||
placeholder?: string;
|
||||
loading?: boolean;
|
||||
innerInputStyle?: object;
|
||||
|
|
|
@ -36,7 +36,7 @@ interface IMultiSelect {
|
|||
onClose?: () => void;
|
||||
inputStyle?: TextStyle;
|
||||
value?: any[];
|
||||
disabled?: boolean | null;
|
||||
disabled?: boolean;
|
||||
innerInputStyle?: object;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import React from 'react';
|
||||
import React, { ReactElement } from 'react';
|
||||
import { Text, TextStyle, View, ViewStyle } from 'react-native';
|
||||
|
||||
import { TSupportedThemes } from '../../theme';
|
||||
|
|
Loading…
Reference in New Issue