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;
|
children?: JSX.Element;
|
||||||
onPress: () => void;
|
onPress: () => void;
|
||||||
inputStyle?: object;
|
inputStyle?: object;
|
||||||
disabled?: boolean | null;
|
disabled?: boolean;
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
loading?: boolean;
|
loading?: boolean;
|
||||||
innerInputStyle?: object;
|
innerInputStyle?: object;
|
||||||
|
|
|
@ -36,7 +36,7 @@ interface IMultiSelect {
|
||||||
onClose?: () => void;
|
onClose?: () => void;
|
||||||
inputStyle?: TextStyle;
|
inputStyle?: TextStyle;
|
||||||
value?: any[];
|
value?: any[];
|
||||||
disabled?: boolean | null;
|
disabled?: boolean;
|
||||||
innerInputStyle?: object;
|
innerInputStyle?: object;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React from 'react';
|
import React, { ReactElement } from 'react';
|
||||||
import { Text, TextStyle, View, ViewStyle } from 'react-native';
|
import { Text, TextStyle, View, ViewStyle } from 'react-native';
|
||||||
|
|
||||||
import { TSupportedThemes } from '../../theme';
|
import { TSupportedThemes } from '../../theme';
|
||||||
|
|
Loading…
Reference in New Issue