pankod/react-native-picker-modal-view

View on GitHub
src/Interfaces/ISearchInDto.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Global Imports
import { TextInputProps } from 'react-native';

export interface ISearch {
    placeholderTextColor: string;
    onClose: () => void;
    onBackRequest?: () => void;
    forceSelect: boolean;
    setText: (text: string) => void;
    searchText: string;
    SearchInputProps?: TextInputProps;
    backButtonDisabled?: boolean
}